Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Honor (0.09 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml

        spec:
          containers:
          - name: hello
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          - name: istio-proxy
            image: auto
            securityContext:
              # iptables rules must honor this value, and must not use 1337
              runAsUser: 1234
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 480 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveMetadata.java

     * Expensive operations should live on {@link ComponentGraphResolveState} instead. Note that as a transition step, not all implementations currently honor this contract.</p>
     */
    public interface ComponentGraphResolveMetadata {
        /**
         * Returns the identifier for this component.
         */
        ComponentIdentifier getId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/AbstractWrapperCrossVersionIntegrationTest.groovy

            }
    
            /**
             * We additionally pass the gradle user home as a system property.
             * Early gradle wrapper versions (< 1.7) don't honor the --gradle-user-home command line option correctly
             * and leaking gradle dist under test into ~/.gradle/wrapper.
             */
            if (!wrapper.wrapperSupportsGradleUserHomeCommandLineOption) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// The v1.22+ in-tree implementations of the well-known Kubernetes signers will
    	// honor this field as long as the requested duration is not greater than the
    	// maximum duration they will honor per the --cluster-signing-duration CLI
    	// flag to the Kubernetes controller manager.
    	//
    	// Certificate signers may not honor this field for various reasons:
    	//
    	//   1. Old signer that is unaware of the field (such as the in-tree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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