Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,868 for revoked (0.21 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *
         * If target is...
         *
         * <ul>
         *     <li>a directory, then its contents are removed recursively,</li>
         *     <li>a symlink pointing to an existing directory, then either the linked directory's
         *     contents are removed recursively (if {@code followSymlinks} is {@code true}),
         *     or the link is removed and a new directory is created (if {@code followSymlinks}
         *     is {@code false}),</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

                @Override
                public void nodeAdded(FileSystemNode node) {
                }
            };
    
            /**
             * Called when a node is removed during the update.
             *
             * Only called for the node which is removed, and not every node in the hierarchy which is removed.
             */
            void nodeRemoved(FileSystemNode node);
    
            /**
             * Called when a node is added during the update.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/cache/CacheConfigurations.java

    @HasInternalProtocol
    @Incubating
    public interface CacheConfigurations {
    
        /**
         * Configures caching for wrapper distributions that are released Gradle versions.  By default, released
         * distributions are removed after 30 days of not being used.
         */
        void releasedWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

            0 * _
        }
    
        def "detects item removed"() {
            when:
            detector.visitChangesSince([one: 1], [:], "test", visitor)
            then:
            1 * changeFactory.removed("one", "test", 1) >> change
            then:
            1 * visitor.visitChange(change) >> true
            0 * _
        }
    
        def "detects all items removed"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination_test.go

    			}
    			if test.wgInvokedExpected != test.wg.invoked {
    				t.Errorf("expected wait group Add to be invoked: %d times, but got: %d", test.wgInvokedExpected, test.wg.invoked)
    			}
    		})
    	}
    }
    
    type fakeServerShutdownSignal struct{}
    
    func (fakeServerShutdownSignal) ShuttingDown() <-chan struct{} { return nil }
    
    type fakeRequestWaitGroup struct {
    	waiting           bool
    	invoked, inflight int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	}
    
    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("kubelet-start phase invoked with an invalid data struct")
    	}
    	bootstrapKubeConfigFile := filepath.Join(data.KubeConfigDir(), kubeadmconstants.KubeletBootstrapKubeConfigFileName)
    
    	// Deletes the bootstrapKubeConfigFile, so the credential used for TLS bootstrap is removed from disk
    	defer os.Remove(bootstrapKubeConfigFile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	n1DoneWG.Wait()
    
    	// after the first set of requests (n1) are done, the count should be zero
    	if invoked := limiter.invoked(); invoked != 0 {
    		t.Errorf("expected no call to rate limiter before Wait is called, but got: %d", invoked)
    	}
    
    	// make sure all requetss in the second group (n2) have started using the
    	// waitgroup (Add invoked) but no request is done using the waitgroup yet.
    	n2BeforeWaitWG.Wait()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ChangeTypeInternal.java

    import org.gradle.work.ChangeType;
    
    public enum ChangeTypeInternal {
        ADDED("has been added", ChangeType.ADDED),
        MODIFIED("has changed", ChangeType.MODIFIED),
        REMOVED("has been removed", ChangeType.REMOVED);
    
        private final String description;
        private final ChangeType publicType;
    
        ChangeTypeInternal(String description, ChangeType publicType) {
            this.description = description;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet());
                throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft);
            }
    
            // Find accessors that were removed but shouldn't be
            Map<AccessorKey, ReplacedAccessor> removedAccessors = new HashMap<>(oldAccessorsOfUpgradedProperties);
            removedAccessors.entrySet().removeIf(e -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                }
                current.size -> {
                    val removed = previous.size - upToDatePrefix
                    when {
                        removed == 1 -> "init script '${displayNameOf(previous[upToDatePrefix].file)}' has been removed"
                        removed > 1 -> "init script '${displayNameOf(previous[upToDatePrefix].file)}' and ${removed - 1} more have been removed"
                        else -> null
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top