Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for isConfigured (0.14 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

        }
    
        @Override
        public JavaVersion getSourceCompatibility() {
            if (srcCompat != null) {
                return srcCompat;
            } else if (toolchainSpec != null && toolchainSpec.isConfigured()) {
                return JavaVersion.toVersion(toolchainSpec.getLanguageVersion().get().toString());
            } else {
                return JavaVersion.current();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	return baseSet.Extend(opts...)
    }
    
    func mustNewEnvSet(ver *version.Version, opts []VersionedOptions) *EnvSet {
    	envSet, err := newEnvSet(ver, opts)
    	if err != nil {
    		panic(fmt.Sprintf("Default environment misconfigured: %v", err))
    	}
    	return envSet
    }
    
    // NewExpressionsEnv returns the NewExpressions environment Type for this EnvSet.
    // See NewExpressions for details.
    func (e *EnvSet) NewExpressionsEnv() *cel.Env {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K 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. docs/changelogs/changelog_2x.md

          <artifactId>okio</artifactId>
          <version>1.3.0</version>
        </dependency>
        ```
    
     *  **Fix: improve parallelism of async requests.** OkHttp's Dispatcher had a
        misconfigured `ExecutorService` that limited the number of worker threads.
        If you're using `Call.enqueue()` this update should significantly improve
        request concurrency.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top