Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

         * A spec that is not configured always directly matches the toolchain of the current JVM.
         */
        boolean isConfigured();
    
        /**
         * A spec is valid when {@link #getLanguageVersion() language version} is set (along with any other properties)
         * or when no properties are set.
         * <p>
         * A {@link #isConfigured() non-configured} spec is always valid.
         */
        boolean isValid();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainQueryService.java

                    .withUpgradeGuideSection(7, "invalid_toolchain_specification_deprecation")
                    .build();
            }
    
            boolean useFallback = !requestedSpec.isConfigured();
            JavaToolchainSpecInternal actualSpec = useFallback ? fallbackToolchainSpec : requestedSpec;
            // We can't use the key of the fallback toolchain spec, because it is a spec that can match configured requests as well
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

                ToolchainFactory fact = factories.get(type);
    
                if (fact == null) {
                    logger.error(
                            "Missing toolchain factory for type: " + type + ". Possibly caused by misconfigured project.");
                } else {
                    for (ToolchainModel model : models) {
                        try {
                            ToolchainPrivate toolchain = fact.createToolchain(model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_goline_order.txt

    # Using an old Go version, fails during module loading, but we rewrite the error to the
    # same one a switching version would use, without the auto-switch.
    # This is a misconfigured system that should not arise in practice.
    env TESTGO_VERSION=go1.21.1
    env TESTGO_VERSION_SWITCH=switch
    cp go.work go.work.orig
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  8. releasenotes/notes/protocol-detection-timeout.yaml

        a detection timeout. However, we found this caused frequent telemetry and traffic failures during slow connections, while increasing latency
        for misconfigured server first protocols rather than failing fast.
    
        This timeout has been disabled by default. This has the following impacts:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  9. samples/external/README.md

    known services.
    
    If Istio is not configured to allow pods to contact external services, the pods will
    see errors such as 404s, HTTPS connection problems, and TCP connection problems.  If
    ServiceEntries are misconfigured pods may see problems with server names.
    
    ## Try it out
    
    After an operator runs `kubectl create -f aptget.yaml` pods will be able to
    succeed with `apt-get update` and `apt-get install`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top