Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for firstSet (0.19 sec)

  1. pkg/kubelet/config/config.go

    	s.updateLock.Lock()
    	defer s.updateLock.Unlock()
    
    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
            if (iterator.hasNext()) {
                Collection<T> firstSet = iterator.next();
                result.addAll(firstSet);
                while (iterator.hasNext()) {
                    Collection<T> next = iterator.next();
                    result.retainAll(next);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
            if (iterator.hasNext()) {
                Collection<T> firstSet = iterator.next();
                result.addAll(firstSet);
                while (iterator.hasNext()) {
                    Collection<T> next = iterator.next();
                    result.retainAll(next);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                        events "passed", "skipped", "failed"
                    }
                }
            """.stripIndent()
    
            and:
            file("src/test/java/FirstTest.java") << """
                ${testFrameworkImports}
                public class FirstTest {
                    @Test public void test() {}
                }
            """.stripIndent()
    
            file("src/test/java/SecondTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/TreeBasedTable.java

          return new TreeRow(rowKey, fromKey, upperBound);
        }
    
        @Override
        public C firstKey() {
          updateBackingRowMapField();
          if (backingRowMap == null) {
            throw new NoSuchElementException();
          }
          return ((SortedMap<C, V>) backingRowMap).firstKey();
        }
    
        @Override
        public C lastKey() {
          updateBackingRowMapField();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/TreeBasedTable.java

          return new TreeRow(rowKey, fromKey, upperBound);
        }
    
        @Override
        public C firstKey() {
          updateBackingRowMapField();
          if (backingRowMap == null) {
            throw new NoSuchElementException();
          }
          return ((SortedMap<C, V>) backingRowMap).firstKey();
        }
    
        @Override
        public C lastKey() {
          updateBackingRowMapField();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    			ext := tok.String()
    			curArrangement, err := arch.ARM64RegisterArrangement(reg, name, ext)
    			if err != nil {
    				p.errorf(err.Error())
    			}
    			if firstReg == -1 {
    				// only record the first register and arrangement
    				firstReg = int(reg)
    				nextReg = firstReg
    				arrangement = curArrangement
    			} else if curArrangement != arrangement {
    				p.errorf("inconsistent arrangement in ARM64 register list")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// more than one of each per m, p, and goroutine.
    	firstGen := traceNextGen(trace.lastNonZeroGen)
    
    	// Reset GC sequencer.
    	trace.seqGC = 1
    
    	// Reset trace reader state.
    	trace.headerWritten = false
    	trace.readerGen.Store(firstGen)
    	trace.flushedGen.Store(0)
    
    	// Register some basic strings in the string tables.
    	traceRegisterLabelsAndReasons(firstGen)
    
    	// Stop the world.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

        return ImmutableSortedSet.copyOf(comparator, sortedDelegate.keySet());
      }
    
      public Comparator<? super K> comparator() {
        return comparator;
      }
    
      @CheckForNull
      public K firstKey() {
        return sortedDelegate.firstKey();
      }
    
      @CheckForNull
      public K lastKey() {
        return sortedDelegate.lastKey();
      }
    
      @CheckForNull
      K higher(K k) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

      }
    
      public void testRowMapFirstKey() {
        sortedTable = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertSame("bar", sortedTable.rowMap().firstKey());
      }
    
      public void testRowMapLastKey() {
        sortedTable = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertSame("foo", sortedTable.rowMap().lastKey());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top