Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for uasdf (0.06 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. staging/src/k8s.io/apimachinery/pkg/util/net/port_split_test.go

    		valid              bool
    		normalized         bool
    	}{
    		{
    			in:         "aoeu:asdf",
    			name:       "aoeu",
    			port:       "asdf",
    			valid:      true,
    			normalized: true,
    		}, {
    			in:         "http:aoeu:asdf",
    			scheme:     "http",
    			name:       "aoeu",
    			port:       "asdf",
    			valid:      true,
    			normalized: true,
    		}, {
    			in:         "https:aoeu:",
    			scheme:     "https",
    			name:       "aoeu",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. test/varerr.go

    // license that can be found in the LICENSE file.
    
    // Verify that a couple of illegal variable declarations are caught by the compiler.
    // Does not compile.
    
    package main
    
    func main() {
    	_ = asdf	// ERROR "undefined.*asdf"
    
    	new = 1	// ERROR "use of builtin new not in function call|invalid left hand side|must be called"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 449 bytes
    - Viewed (0)
  5. src/crypto/x509/pem_decrypt_test.go

    			t.Errorf("data mismatch")
    		}
    	}
    }
    
    var testData = []struct {
    	kind     PEMCipher
    	password []byte
    	pemData  []byte
    	plainDER string
    }{
    	{
    		kind:     PEMCipherDES,
    		password: []byte("asdf"),
    		pemData: []byte(testingKey(`
    -----BEGIN RSA TESTING KEY-----
    Proc-Type: 4,ENCRYPTED
    DEK-Info: DES-CBC,34F09A4FC8DE22B5
    
    WXxy8kbZdiZvANtKvhmPBLV7eVFj2A5z6oAxvI9KGyhG0ZK0skfnt00C24vfU7m5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 20:03:55 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. .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)
  9. 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)
  10. 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)
Back to top