Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for uasdf (0.13 sec)

  1. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    }
                }
    
                // alphabetical ordering seems to interfere here, if we used `s` instead of `t`, the check passes just fine
                def testImplHolder = configurations.create("uasdf")
                def testCopy = configurations.testImplementation.copy()
                configurations.add(testCopy)
                testImplHolder.extendsFrom(testCopy)
    
                task assertCopyCanBeResolved {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/DaemonErrorFeedbackCrossVersionSpec.groovy

            toolingApi.requireDaemons()
    
            when:
            withConnection {
                it.newBuild()
                        .setJvmArguments("-Xasdf")
                        .run()
            }
    
            then:
            GradleConnectionException ex = thrown()
            ex.cause.message.contains "-Xasdf"
            ex.cause.message.contains "Unable to start the daemon"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/go_badcmd.txt

    ! go asdf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 02 15:10:16 UTC 2023
    - 45 bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultToolchainConfigurationTest.groovy

            environment.put("ASDF_DATA_DIR", "/other/.asdf")
            environment.put("JABBA_HOME", "/other/.jabba")
            environment.put("SDKMAN_CANDIDATES_DIR", "/other/.sdkman/candidates")
    
            def configuration = new DefaultToolchainConfiguration(OperatingSystem.LINUX, systemProperties, environment)
    
            expect:
            configuration.asdfDataDirectory == new File("/other/.asdf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. .gitignore

    .teamcity/.mvn/.gradle-enterprise/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AsdfInstallationSupplierTest.groovy

            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 1
            directories[0].location == expectedLocation
            directories[0].source == "asdf-vm"
        }
    
        def "supplies multiple installations for multiple paths"() {
            given:
            def expectedLocation1 = candidates.createDir("installs/java/11.0.6.hs-adpt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/goflags.txt

    stderr '^go: parsing \$GOFLAGS: non-flag "-=noname"'
    
    env GOFLAGS=-f
    ! go list runtime
    stderr '^go: flag needs an argument: -f \(from (\$GOFLAGS|%GOFLAGS%)\)$'
    
    env GOFLAGS=-e=asdf
    ! go list runtime
    stderr '^go: invalid boolean value \"asdf\" for flag -e \(from (\$GOFLAGS|%GOFLAGS%)\)'
    
    # except in go bug (untested) and go env
    go env
    stdout GOFLAGS
    
    # Flags listed in GOFLAGS should be safe to duplicate on the command line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

            when:
            converter.convert((DaemonBuildOptions.IdleTimeoutOption.GRADLE_PROPERTY): 'asdf', params)
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message.contains 'org.gradle.daemon.idletimeout'
            ex.message.contains 'asdf'
        }
    
        def "shows nice message for invalid periodic check interval"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    		&complicated{
    			Baz:   1,
    			Qux:   "aoeu",
    			Inner: &complicated{Qux: "asdf"},
    			KV:    map[string]int{"Billy": 2},
    		},
    		"detail",
    	).Error()
    	t.Logf("message: %v", s)
    	for _, part := range []string{
    		"foo", ErrorTypeInvalid.String(),
    		"Baz", "Qux", "Inner", "KV", "detail",
    		"1", "aoeu", "Billy", "2",
    		// "asdf", TODO: re-enable once we have a better nested printer
    	} {
    		if !strings.Contains(s, part) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/AsdfInstallationSupplier.java

        public AsdfInstallationSupplier(ToolchainConfiguration toolchainConfiguration) {
            this.toolchainConfiguration = toolchainConfiguration;
        }
    
        @Override
        public String getSourceName() {
            return "asdf-vm";
        }
    
        @Override
        public Set<InstallationLocation> get() {
            return findJavaCandidates(toolchainConfiguration.getAsdfDataDirectory());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top