Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for getJdks (0.14 sec)

  1. istioctl/pkg/writer/envoy/configdump/listener.go

    			if err != nil {
    				return err.Error()
    			}
    			if httpProxy.GetRouteConfig() != nil {
    				return describeRouteConfig(httpProxy.GetRouteConfig())
    			}
    			if httpProxy.GetRds().GetRouteConfigName() != "" {
    				return fmt.Sprintf("Route: %s", httpProxy.GetRds().GetRouteConfigName())
    			}
    			return "HTTP"
    		} else if filter.Name == TCPListener {
    			if !strings.Contains(string(filter.GetTypedConfig().GetValue()), util.BlackHoleCluster) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

                return cCompiler;
            }
    
            @Input
            public String getCFlags() {
                return CFlags;
            }
    
            @Input
            public String getDns() {
                return dns;
            }
    
            @Input
            public String getURL() {
                return URL;
            }
    
            @Input
            public String getA() {
                return a;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

                    compileJava {
                        options.fork = ${mode != IN_PROCESS}
                        ${mode == COMMAND_LINE ? "options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'" : ''}
                    }
                """
            }
    
            when:
            succeeds "compileJava"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeConnection.java

                    : loc.getUNCPath();
            String share = loc.getShare();
    
            DfsReferralData start = referral != null ? referral : this.ctx.getDfs().resolve(this.ctx, hostName, loc.getShare(), path);
            DfsReferralData dr = start;
            IOException last = null;
            do {
                if ( dr != null ) {
                    targetDomain = dr.getDomain();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbEnumerationUtil.java

            if ( locator.getType() != SmbConstants.TYPE_SERVER )
                throw new SmbException("The requested list operations is invalid: " + u.toString());
    
            Set<FileEntry> set = new HashSet<>();
    
            if ( tc.getDfs().isTrustedDomain(tc, locator.getServer()) ) {
                /*
                 * The server name is actually the name of a trusted
                 * domain. Add DFS roots to the list.
                 */
                try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

                    dependencySubstitution {
                        substitute module('org.gradle.test:mrjar') using project(':')
                    }
                }
            """)
    
            def java8Home = AvailableJavaHomes.getJdk8().javaHome
            def java11Home = AvailableJavaHomes.getJdk11().javaHome
    
            when:
            executer.withJavaHome(java8Home).withArguments("-Porg.gradle.java.installations.paths=$java8Home,$java11Home")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        public void setWildcards(Set<String> wildcards) {
            this.wildcards = wildcards;
        }
    
        /**
         * Represent the jdk information of the project java sdk.
         */
        public Jdk getJdk() {
            return jdk;
        }
    
        public void setJdk(Jdk jdk) {
            this.jdk = jdk;
        }
    
        /**
         * The vcs used by the project.
         */
        public String getVcs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

        // bootclasspath has been removed in Java 9+
        def "bootclasspath can be set"() {
            def jdk7 = AvailableJavaHomes.getJdk7()
            def jdk7bootClasspath = TextUtil.escapeString(jdk7.jre.absolutePath) + "/lib/rt.jar"
            def jdk8 = AvailableJavaHomes.getJdk8()
            def jdk8bootClasspath = TextUtil.escapeString(jdk8.jre.absolutePath) + "/lib/rt.jar"
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        }
    
        def "displays collections of scalar types in a human-readable format"() {
            given:
            buildFile << '''
    
    @Managed
    interface Container {
       List<String> getLabels()
       List<Integer> getIds()
       List<Double> getValues()
       void setValues(List<Double> values)
    }
    
    model {
        container(Container) {
            labels.add 'bug'
            labels.add 'blocker'
        }
    }
    '''
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            given:
            buildFile << """
                compileJava {
                    options.fork = true
                    options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'
                }
            """
            def a = java "@Helper class A {}"
            java "class Unrelated {}"
    
            outputs.snapshot { run "compileJava" }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top