Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 333 for STRATEGY (0.11 sec)

  1. pkg/registry/core/node/strategy.go

    }
    
    // Nodes is the default logic that applies when creating and updating Node
    // objects.
    var Strategy = nodeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is false for nodes.
    func (nodeStrategy) NamespaceScoped() bool {
    	return false
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/strategy.go

    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Services
    // objects via the REST API.
    var Strategy = svcStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for services.
    func (svcStrategy) NamespaceScoped() bool {
    	return true
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    		},
    	}
    
    	// Nothing in Spec changes: OK
    	Strategy.PrepareForUpdate(ctx, newPdb, pdb)
    	errs = Strategy.ValidateUpdate(ctx, newPdb, pdb)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error updating PodDisruptionBudget.")
    	}
    
    	// Changing the selector?  OK
    	newPdb.Spec.Selector = &metav1.LabelSelector{MatchLabels: map[string]string{"a": "bar"}}
    	Strategy.PrepareForUpdate(ctx, newPdb, pdb)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            MethodShouldNotBeAnnotated config = methodShouldNotBeAnnotatedConfig(spec)
            config.render()
        }
    
        MethodShouldNotBeAnnotated methodShouldNotBeAnnotatedConfig(@DelegatesTo(value = MethodShouldNotBeAnnotated, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/BloomFilter.java

      private final Funnel<? super T> funnel;
    
      /** The strategy we employ to map an element T to {@code numHashFunctions} bit indexes. */
      private final Strategy strategy;
    
      /** Creates a BloomFilter. */
      private BloomFilter(
          LockFreeBitArray bits, int numHashFunctions, Funnel<? super T> funnel, Strategy strategy) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

        private final GarbageCollectorMonitoringStrategy strategy;
        private final Logger logger;
    
        public HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy) {
            this(stats, strategy, LoggerFactory.getLogger(HealthExpirationStrategy.class));
        }
    
        HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy, Logger logger) {
            this.stats = stats;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthCheck.java

    @ServiceScope(Scope.Global.class)
    public class DaemonHealthCheck {
        private final DaemonExpirationStrategy strategy;
        private final DaemonExpirationListener listenerBroadcast;
    
        public DaemonHealthCheck(DaemonExpirationStrategy strategy, ListenerManager listenerManager) {
            this.strategy = strategy;
            this.listenerBroadcast = listenerManager.getBroadcaster(DaemonExpirationListener.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pkg/registry/apps/statefulset/strategy_test.go

    		}
    		Strategy.PrepareForUpdate(ctx, validPs, ps)
    		errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    		if len(errs) != 0 {
    			t.Errorf("updating spec.Replicas and minReadySeconds is allowed on a statefulset: %v", errs)
    		}
    		invalidPs := ps
    		invalidPs.Spec.MinReadySeconds = int32(-1)
    		Strategy.PrepareForUpdate(ctx, validPs, invalidPs)
    		errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/BloomFilter.java

      private final Funnel<? super T> funnel;
    
      /** The strategy we employ to map an element T to {@code numHashFunctions} bit indexes. */
      private final Strategy strategy;
    
      /** Creates a BloomFilter. */
      private BloomFilter(
          LockFreeBitArray bits, int numHashFunctions, Funnel<? super T> funnel, Strategy strategy) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceslice/strategy_test.go

    }
    
    func TestClassStrategy(t *testing.T) {
    	if Strategy.NamespaceScoped() {
    		t.Errorf("ResourceSlice must not be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("ResourceSlice should not allow create on update")
    	}
    }
    
    func TestClassStrategyCreate(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	slice := slice.DeepCopy()
    
    	Strategy.PrepareForCreate(ctx, slice)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top