lowlevel is now excluded from Appveyor

This commit is contained in:
Bruce Eckel 2017-05-04 10:09:51 -06:00
parent 80022e09bd
commit af43fbb91a
8 changed files with 5 additions and 10 deletions

View File

@ -21,7 +21,7 @@ public class MapOfList {
petPeople.put(new Person("Marilyn"), petPeople.put(new Person("Marilyn"),
Arrays.asList( Arrays.asList(
new Pug("Louie aka Louis Snorkelstein Dupree"), new Pug("Louie aka Louis Snorkelstein Dupree"),
new Cat("Stanford aka Stinky el Negro"), new Cat("Stanford"),
new Cat("Pinkola"))); new Cat("Pinkola")));
petPeople.put(new Person("Luke"), petPeople.put(new Person("Luke"),
Arrays.asList(new Rat("Fuzzy"), new Rat("Fizzy"))); Arrays.asList(new Rat("Fuzzy"), new Rat("Fizzy")));
@ -43,8 +43,8 @@ People: [Person Dawn, Person Kate, Person Isaac, Person
Marilyn, Person Luke] Marilyn, Person Luke]
Pets: [[Cymric Molly, Mutt Spot], [Cat Shackleton, Cat Pets: [[Cymric Molly, Mutt Spot], [Cat Shackleton, Cat
Elsie May, Dog Margrett], [Rat Freckly], [Pug Louie aka Elsie May, Dog Margrett], [Rat Freckly], [Pug Louie aka
Louis Snorkelstein Dupree, Cat Stanford aka Stinky el Louis Snorkelstein Dupree, Cat Stanford, Cat Pinkola],
Negro, Cat Pinkola], [Rat Fuzzy, Rat Fizzy]] [Rat Fuzzy, Rat Fizzy]]
Person Dawn has: Person Dawn has:
Cymric Molly Cymric Molly
Mutt Spot Mutt Spot
@ -56,7 +56,7 @@ Person Isaac has:
Rat Freckly Rat Freckly
Person Marilyn has: Person Marilyn has:
Pug Louie aka Louis Snorkelstein Dupree Pug Louie aka Louis Snorkelstein Dupree
Cat Stanford aka Stinky el Negro Cat Stanford
Cat Pinkola Cat Pinkola
Person Luke has: Person Luke has:
Rat Fuzzy Rat Fuzzy

View File

@ -20,7 +20,7 @@ public class IndividualTest {
Cat Elsie May Cat Elsie May
Cat Pinkola Cat Pinkola
Cat Shackleton Cat Shackleton
Cat Stanford aka Stinky el Negro Cat Stanford
Cymric Molly Cymric Molly
Dog Margrett Dog Margrett
Mutt Spot Mutt Spot

View File

@ -3,7 +3,6 @@
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information. // Visit http://OnJava8.com for more book information.
// Atomic classes are occasionally useful in regular code // Atomic classes are occasionally useful in regular code
// {ValidateByHand} AppVeyor CI has trouble
import java.util.concurrent.atomic.*; import java.util.concurrent.atomic.*;
public class AtomicEvenProducer extends IntGenerator { public class AtomicEvenProducer extends IntGenerator {

View File

@ -2,7 +2,6 @@
// (c)2017 MindView LLC: see Copyright.txt // (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information. // Visit http://OnJava8.com for more book information.
// {ValidateByHand} AppVeyor CI has trouble
import java.util.concurrent.*; import java.util.concurrent.*;
import java.util.concurrent.atomic.*; import java.util.concurrent.atomic.*;
import java.util.*; import java.util.*;

View File

@ -2,7 +2,6 @@
// (c)2017 MindView LLC: see Copyright.txt // (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information. // Visit http://OnJava8.com for more book information.
// {ValidateByHand} AppVeyor CI has trouble
import java.util.concurrent.atomic.*; import java.util.concurrent.atomic.*;
public class public class

View File

@ -4,7 +4,6 @@
// Visit http://OnJava8.com for more book information. // Visit http://OnJava8.com for more book information.
// Locks in the concurrent library allow you // Locks in the concurrent library allow you
// to give up on trying to acquire a lock // to give up on trying to acquire a lock
// {ValidateByHand} AppVeyor CI has trouble
import java.util.concurrent.*; import java.util.concurrent.*;
import java.util.concurrent.locks.*; import java.util.concurrent.locks.*;
import onjava.Nap; import onjava.Nap;

View File

@ -4,7 +4,6 @@
// Visit http://OnJava8.com for more book information. // Visit http://OnJava8.com for more book information.
// Synchronizing blocks instead of entire methods // Synchronizing blocks instead of entire methods
// speeds up access. // speeds up access.
// {ValidateByHand} AppVeyor CI has trouble
import java.util.*; import java.util.*;
import java.util.stream.*; import java.util.stream.*;
import java.util.concurrent.*; import java.util.concurrent.*;