Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for isConfigured (0.17 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/SpecificInstallationToolchainSpec.java

        }
    
        @Override
        public Key toKey() {
            return new Key(javaHome);
        }
    
        @Override
        public boolean isConfigured() {
            return true;
        }
    
        @Override
        public boolean isValid() {
            return true;
        }
    
        public File getJavaHome() {
            return javaHome;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainSpec.java

        public JavaToolchainSpecInternal.Key toKey() {
            return new Key(getLanguageVersion().getOrNull(), getVendor().getOrNull(), getImplementation().getOrNull());
        }
    
        @Override
        public boolean isConfigured() {
            return getLanguageVersion().isPresent();
        }
    
        @SuppressWarnings("deprecation")
        @Override
        public boolean isValid() {
            if (getVendor().getOrNull() == JvmVendorSpec.IBM_SEMERU) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. hack/local-up-cluster.sh

    {
      echo "Cleaning up..."
      # delete running images
      # if [[ "${ENABLE_CLUSTER_DNS}" == true ]]; then
      # Still need to figure why this commands throw an error: Error from server: client: etcd cluster is unavailable or misconfigured
      #     ${KUBECTL} --namespace=kube-system delete service kube-dns
      # And this one hang forever:
      #     ${KUBECTL} --namespace=kube-system delete rc kube-dns-v10
      # fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              //
              // addListener has thrown an exception! SetFuture.run can't throw any exceptions so this
              // must have been caused by addListener itself. The most likely explanation is a
              // misconfigured mock. Try to switch to Failure.
              Failure failure;
              try {
                failure = new Failure(t);
              } catch (Exception | Error oomMostLikely) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              //
              // addListener has thrown an exception! SetFuture.run can't throw any exceptions so this
              // must have been caused by addListener itself. The most likely explanation is a
              // misconfigured mock. Try to switch to Failure.
              Failure failure;
              try {
                failure = new Failure(t);
              } catch (Exception | Error oomMostLikely) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

        executeSynchronously("/")
          .assertFailure(IOException::class.java)
      }
    
      @Test
      fun requestBodySurvivesRetries() {
        server.enqueue(MockResponse())
    
        // Enable a misconfigured proxy selector to guarantee that the request is retried.
        client =
          client.newBuilder()
            .proxySelector(
              FakeProxySelector()
                .addProxy(server2.toProxyAddress())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top