Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isConfigured (0.46 sec)

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

    							requestType,
    						},
    					},
    				)
    				if err != nil {
    					panic(fmt.Sprintf("environment misconfigured: %v", err))
    				}
    				if strictCost {
    					extended, err = extended.Extend(environment.StrictCostOpt)
    					if err != nil {
    						panic(fmt.Sprintf("environment misconfigured: %v", err))
    					}
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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