Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for Honor (0.05 sec)

  1. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	// reading from etcd.
    	// That means we should not allow 0 values to be introduced, either
    	// via v1 or v1beta3(with the roundtrip annotation) until we know
    	// all servers are at 1.29+ and will honor the zero value correctly.
    	//
    	// TODO(121510): 1.29: don't allow a zero value, either via v1 or
    	//  v1beta3 (with the roundtrip annotation) for the
    	//  'nominalConcurrencyShares' field of 'limited' for CREATE operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/certificates/v1/generated.proto

      //
      // 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 Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    	return withPanicRecovery(handler, func(w http.ResponseWriter, req *http.Request, err interface{}) {
    		if err == http.ErrAbortHandler {
    			// Honor the http.ErrAbortHandler sentinel panic value
    			//
    			// If ServeHTTP panics, the server (the caller of ServeHTTP) assumes
    			// that the effect of the panic was isolated to the active request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

     *
     * The declared type of the processor can be overwritten to test various error cases, e.g. a processor that
     * declares itself as incremental, but doesn't honor that contract.
     */
    @CompileStatic
    class AnnotationProcessorFixture {
        protected final String annotationName
        protected final String supportedAnnotationTypes;
        protected final String annotationPackageName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/database/sql/driver/driver.go

    // [database/sql.DB.Exec] will first prepare a query, execute the statement, and then
    // close the statement.
    //
    // ExecContext may return [ErrSkip].
    //
    // ExecContext must honor the context timeout and return when the context is canceled.
    type ExecerContext interface {
    	ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top