Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for Honor (0.23 sec)

  1. pkg/registry/certificates/certificates/storage/metrics_test.go

    				},
    			},
    			options:       &metav1.UpdateOptions{},
    			wantSigner:    "kubernetes.io/educate-dolphins",
    			wantRequested: true,
    			wantHonored:   true,
    		},
    		{
    			name:    "does not honor duration just outside of lower bound",
    			success: true,
    			obj: &certificates.CertificateSigningRequest{
    				Status: certificates.CertificateSigningRequestStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    				},
    			},
    			podSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{
    					{NodeTaintsPolicy: &honor},
    				},
    			},
    			wantPodSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{
    					{NodeTaintsPolicy: &honor},
    				},
    			},
    		},
    		{
    			name:    "feature enabled, both pods use the fields",
    			enabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    				MinDomains:         ptr.Deref(c.MinDomains, 1),   // If MinDomains is nil, we treat MinDomains as 1.
    				NodeAffinityPolicy: v1.NodeInclusionPolicyHonor,  // If NodeAffinityPolicy is nil, we treat NodeAffinityPolicy as "Honor".
    				NodeTaintsPolicy:   v1.NodeInclusionPolicyIgnore, // If NodeTaintsPolicy is nil, we treat NodeTaintsPolicy as "Ignore".
    			}
    			if pl.enableNodeInclusionPolicyInPodTopologySpread {
    				if c.NodeAffinityPolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. internal/config/scanner/scanner.go

    		return cfg, fmt.Errorf("unknown value: '%s'", idleSpeed)
    	}
    
    	// Stick to loading deprecated config/env if they are already set, and the Speed value
    	// has not been changed from its "default" value, if it has been changed honor new settings.
    	if kvs.GetWithDefault(Speed, DefaultKVS) == "default" {
    		if kvs.Get(Delay) != "" && kvs.Get(MaxWait) != "" {
    			if err = lookupDeprecatedScannerConfig(kvs, &cfg); err != nil {
    				return cfg, err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    				t.Errorf("unexpected diff when dropping fields (-want, +got):\n%s", diff)
    			}
    		})
    	}
    }
    
    func TestNodeInclusionPolicyEnablementInCreating(t *testing.T) {
    	var (
    		honor            = api.NodeInclusionPolicyHonor
    		ignore           = api.NodeInclusionPolicyIgnore
    		emptyConstraints = []api.TopologySpreadConstraint{
    			{
    				WhenUnsatisfiable: api.DoNotSchedule,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    					{key: "node", value: "node-b"}: 2,
    					{key: "node", value: "node-x"}: 1,
    				},
    			},
    			enableNodeInclusionPolicy: true,
    		},
    		{
    			name: "two node inclusion Constraints, zone: honor/honor, node: honor/ignore",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, &honorPolicy, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
        // The only difference with JavaBean 1.01 is to prefer `get` over `is` for boolean properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. internal/http/server.go

    		if atomic.LoadUint32(&srv.inShutdown) != 0 {
    			// To indicate disable keep-alive, server is shutting down.
    			w.Header().Set("Connection", "close")
    
    			// Add 1 minute retry header, incase-client wants to honor it
    			w.Header().Set(RetryAfter, "60")
    
    			w.WriteHeader(http.StatusServiceUnavailable)
    			w.Write([]byte(http.ErrServerClosed.Error()))
    			return
    		}
    
    		atomic.AddInt32(&srv.requestCount, 1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		attrWithOverride := &attrWithResourceOverride{Attributes: attr}
    		equivalents := o.GetEquivalentResourceMapper().EquivalentResourcesFor(attr.GetResource(), attr.GetSubresource())
    		// honor earlier rules first
    	OuterLoop:
    		for _, r := range h.GetRules() {
    			// see if the rule matches any of the equivalent resources
    			for _, equivalent := range equivalents {
    				if equivalent == attr.GetResource() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                        .withPropertyName("installDirectory");
                    task.setExecutable(installTask.getRunScriptFile().get().getAsFile());
                    task.dependsOn(binary.getInstallDirectory());
                    // TODO: Honor changes to build directory
                    task.setOutputDir(project.getLayout().getBuildDirectory().dir("test-results/" + binary.getNames().getDirName()).get().getAsFile());
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top