Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for isConfigured (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions:        envOpts,
    			DeclTypes:         declTypes,
    		})
    		if err != nil {
    			panic(fmt.Sprintf("environment misconfigured: %v", err))
    		}
    		return env
    	}
    
    	userType := buildUserType()
    	claimsType := apiservercel.NewMapType(apiservercel.StringType, apiservercel.AnyType, -1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile.go

    			},
    			DeclTypes: []*apiservercel.DeclType{
    				subjectAccessReviewSpecRequestType,
    			},
    		},
    	)
    	if err != nil {
    		panic(fmt.Sprintf("environment misconfigured: %v", err))
    	}
    
    	return extended
    }
    
    // buildRequestType generates a DeclType for SubjectAccessReviewSpec.
    // if attributes are added here, also add to convertObjectToUnstructured.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 20:56:52 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

         * Otherwise it is necessary to manually prepare a comprehensive set of trusted roots.
         *
         * If the host platform is compromised or misconfigured this may contain untrustworthy root
         * certificates. Applications that connect to a known set of servers may be able to mitigate
         * this problem with [certificate pinning][CertificatePinner].
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    		Proxier:          proxier,
    		UpgradeTransport: nil,
    	})
    }
    
    // NewRoundTripperWithConfig creates a new SpdyRoundTripper with the specified
    // configuration. Returns an error if the SpdyRoundTripper is misconfigured.
    func NewRoundTripperWithConfig(cfg RoundTripperConfig) (*SpdyRoundTripper, error) {
    	// Process UpgradeTransport, which is mutually exclusive to TLSConfig and Proxier.
    	if cfg.UpgradeTransport != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            withBuildCache().run "clean"
    
            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
        }
    
        /**
         * This scenario represents a potentially misconfigured server trying to redirect writes, but using the wrong status to do so.
         * This is still potentially valid usage though, and is valid HTTP.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    
    At times, the Gradle Dependency Cache can become out of sync with the actual state of the configured repositories.
    Perhaps a repository was initially misconfigured, or perhaps a "non-changing" module was published incorrectly.
    To refresh all dependencies in the dependency cache, use the `--refresh-dependencies` option on the command line.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/net/dial.go

    	LocalAddr Addr
    
    	// DualStack previously enabled RFC 6555 Fast Fallback
    	// support, also known as "Happy Eyeballs", in which IPv4 is
    	// tried soon if IPv6 appears to be misconfigured and
    	// hanging.
    	//
    	// Deprecated: Fast Fallback is enabled by default. To
    	// disable, set FallbackDelay to a negative value.
    	DualStack bool
    
    	// FallbackDelay specifies the length of time to wait before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/net.go

    // during initial snapshot creation, it will insert every snapshotted pod's IP into the set.
    //
    // The set does not allow dupes (obviously, that would be undefined) - but in the real world due to misconfigured
    // IPAM or other things, we may see two pods with the same IP on the same node - we will skip the dupes,
    // which is all we can do - these pods will fail healthcheck until the IPAM issue is resolved (which seems reasonable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	policiesToBindings := map[types.NamespacedName][]B{}
    	bindingList, err := s.bindingInformer.List(labels.Everything())
    	if err != nil {
    		// This should never happen unless types are misconfigured
    		// (can't use meta.accessor on them)
    		return nil, err
    	}
    
    	// Gather a list of all active policy bindings
    	for _, bindingSpec := range bindingList {
    		bindingAccessor := s.newBindingAccessor(bindingSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller.go

    	if err != nil {
    		if createEndpoints && errors.IsForbidden(err) {
    			// A request is forbidden primarily for two reasons:
    			// 1. namespace is terminating, endpoint creation is not allowed by default.
    			// 2. policy is misconfigured, in which case no service would function anywhere.
    			// Given the frequency of 1, we log at a lower level.
    			logger.V(5).Info("Forbidden from creating endpoints", "error", err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top