Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 816 for Initial (0.17 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/DynamicProcessorTest.groovy

        Processor delegate = Stub(Processor)
        AnnotationProcessorResult result = new AnnotationProcessorResult(null, "")
        DynamicProcessor processor = new DynamicProcessor(delegate, result)
    
        def "sets initial processor type"() {
            expect:
            result.type == UNKNOWN
        }
    
        def "updates processor type from options for #type processor"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/probe_test.go

    	// Assert
    	assert.Equal(t, 2, len(watcher.watches)) // 2 from initial setup
    
    	// test add testDriverName
    	testDriverName := "testDriverName"
    	testDriverPath := filepath.Join(pluginDir, testDriverName)
    	fs.MkdirAll(testDriverPath, 0777)
    	watcher.TriggerEvent(fsnotify.Create, testDriverPath)
    	// Assert
    	assert.Equal(t, 3, len(watcher.watches)) // 2 from initial setup, 1 from new watch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    		object           runtime.Object
    		expectAnnotation bool
    	}{
    		{
    			name:             "a standard obj with the initial-events-end annotation set to true",
    			object:           createAnnotatedPod("p1", "true"),
    			expectAnnotation: true,
    		},
    		{
    			name:   "a standard obj with the initial-events-end annotation set to false",
    			object: createAnnotatedPod("p1", "false"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilderFactory.java

         * @return a new message builder
         */
        @Nonnull
        MessageBuilder builder();
    
        /**
         * Creates a new message builder of the specified size.
         * @param size the initial size of the message builder buffer
         * @return a new message builder
         */
        @Nonnull
        MessageBuilder builder(int size);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    			if err := utilfeature.DefaultMutableFeatureGate.SetFromMap(kubeletConfig.FeatureGates); err != nil {
    				return fmt.Errorf("failed to set feature gates from initial flags-based config: %w", err)
    			}
    
    			// validate the initial KubeletFlags
    			if err := options.ValidateKubeletFlags(kubeletFlags); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/CrossProcessFileLockIntegrationTest.groovy

    class CrossProcessFileLockIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "the task history lock can be acquired when the initial owner is busy executing tasks"() {
            createDirs("a", "b")
            settingsFile << "include 'a', 'b'"
    
            file("a/src/main/java/A.java") << "public class A {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/NetworkOperationBackOffAndRetry.java

    public class NetworkOperationBackOffAndRetry<T> {
        private final static String MAX_ATTEMPTS = "org.gradle.internal.network.retry.max.attempts";
        private final static String INITIAL_BACKOFF_MS = "org.gradle.internal.network.retry.initial.backOff";
    
        private static final Logger LOGGER = LoggerFactory.getLogger(NetworkOperationBackOffAndRetry.class);
        private final int maxDeployAttempts;
        private final int initialBackOff;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 04:09:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/HashMultiset.java

    @ElementTypesAreNonnullByDefault
    public final class HashMultiset<E extends @Nullable Object> extends AbstractMapBasedMultiset<E> {
    
      /** Creates a new, empty {@code HashMultiset} using the default initial capacity. */
      public static <E extends @Nullable Object> HashMultiset<E> create() {
        return create(ObjectCountHashMap.DEFAULT_SIZE);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt

    # an expected value appears in the cache. If a dirty coverage map is used
    # (i.e. the coverage map generated during the last minimization step,
    # rather than the map provided with the initial input) then this value
    # is unlikely to appear in the cache, since the map generated during
    # the last minimization step should not increase the coverage.
    
    [short] skip
    [!fuzz-instrumented] skip
    
    env GOCACHE=$WORK/gocache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/interface.go

    	Run(ctx context.Context) error
    
    	// Retrieves the informer used to back this controller
    	Informer() Informer[T]
    
    	// Returns true if the informer cache has synced, and all the objects from
    	// the initial list have been reconciled at least once.
    	HasSynced() bool
    }
    
    type NamespacedLister[T any] interface {
    	// List lists all ValidationRuleSets in the indexer for a given namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top