Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,056 for previousN (0.16 sec)

  1. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	assert.NoError(t, err, "could not create testing checkpoint manager")
    
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			// ensure there is no previous checkpoint
    			assert.NoError(t, cpm.RemoveCheckpoint(testingCheckpoint), "could not remove testing checkpoint")
    
    			// prepare checkpoint for testing
    			if strings.TrimSpace(tc.checkpointContent) != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

    /**
     * Serializes execution of tasks, somewhat like an "asynchronous {@code synchronized} block." Each
     * {@linkplain #submit enqueued} callable will not be submitted to its associated executor until the
     * previous callable has returned -- and, if the previous callable was an {@link AsyncCallable}, not
     * until the {@code Future} it returned is {@linkplain Future#isDone done} (successful, failed, or
     * cancelled).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. test/funcdup.go

    	F2(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    	F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    }
    
    type T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    type T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/TrivialChangeDetector.java

        }
    
        @Override
        public boolean visitChangesSince(Map<String, S> previous, Map<String, S> current, String propertyTitle, ChangeVisitor visitor) {
            switch (current.size()) {
                case 0:
                    if (previous.isEmpty()) {
                        return true;
                    }
                    for (Map.Entry<String, S> entry : previous.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintCompareStrategy.java

            public Change removed(String path, String propertyTitle, FileSystemLocationFingerprint previous) {
                return DefaultFileChange.removed(path, propertyTitle, previous.getType(), previous.getNormalizedPath());
            }
    
            @Override
            public Change modified(String path, String propertyTitle, FileSystemLocationFingerprint previous, FileSystemLocationFingerprint current) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/PropertyChanges.java

        private final ImmutableSortedSet<String> previous;
        private final ImmutableSortedSet<String> current;
        private final String title;
        private final Describable executable;
    
        public PropertyChanges(
            ImmutableSortedSet<String> previous,
            ImmutableSortedSet<String> current,
            String title,
            Describable executable
        ) {
            this.previous = previous;
            this.current = current;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                changeConsumer.visitChange(removed);
                previous = nextEntry(previousEntries);
            }
    
            void modified() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/LinkedListMultimap.java

       */
      private void removeNode(Node<K, V> node) {
        if (node.previous != null) {
          node.previous.next = node.next;
        } else { // node was head
          head = node.next;
        }
        if (node.next != null) {
          node.next.previous = node.previous;
        } else { // node was tail
          tail = node.previous;
        }
        if (node.previousSibling == null && node.nextSibling == null) {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalGroup.java

        private final int ordinal;
        @Nullable
        private final OrdinalGroup previous;
        private final Set<Node> entryNodes = new LinkedHashSet<>();
        private OrdinalNode producerLocationsNode;
        private OrdinalNode destroyerLocationsNode;
    
        OrdinalGroup(int ordinal, @Nullable OrdinalGroup previous) {
            this.ordinal = ordinal;
            this.previous = previous;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. test/funcdup2.go

    	F2(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    	F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    }
    
    var T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    var T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 721 bytes
    - Viewed (0)
Back to top