Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 333 for bin2 (0.07 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryCacheDecoratorFactoryTest.groovy

        def "caches result from backing cache and reuses for other instances with the same cache id"() {
            given:
            def cache = cacheFactory.decorator(100, true).decorate("path/fileSnapshots.bin", "fileSnapshots", target, crossProcessCacheAccess, asyncCacheAccess)
    
            when:
            def result = cache.getIfPresent("key")
    
            then:
            result == "result"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/PluginTestPreconditions.groovy

    class PluginTestPreconditions {
        static File locate(String shellCommand) {
            return [
                new File("/bin/$shellCommand"),
                new File("/usr/bin/$shellCommand"),
                new File("/usr/local/bin/$shellCommand"),
                new File("/opt/local/bin/$shellCommand")
            ].find { it.exists() }
        }
    
        static class BashAvailable implements TestPrecondition {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            given:
            def jdkHome = temporaryFolder.createDir("jdk")
            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
            // Make it look like a macOS installation
            def macOsJdkHomeBinDir = jdkHome.createDir("Contents/Home/bin")
            macOsJdkHomeBinDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/env_write.txt

    # go env -w rejects relative CC values
    [!GOOS:windows] go env -w CC=/usr/bin/clang
    go env -w CC=clang
    [!GOOS:windows] ! go env -w CC=./clang
    [!GOOS:windows] ! go env -w CC=bin/clang
    [!GOOS:windows] stderr 'go: CC entry is relative; must be absolute path'
    
    [GOOS:windows] go env -w CC=$WORK\bin\clang
    [GOOS:windows] ! go env -w CC=.\clang
    [GOOS:windows] ! go env -w CC=bin\clang
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway_test.go

    			Servers: []*networking.Server{
    				{
    					Hosts: []string{host},
    					Port:  &networking.Port{Name: portName, Number: portNumber, Protocol: portProtocol},
    					Bind:  bind,
    					Tls:   &networking.ServerTLSSettings{Mode: mode},
    				},
    			},
    		},
    	}
    	return c
    }
    
    func BenchmarkParseGatewayRDSRouteName(b *testing.B) {
    	for range b.N {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. Jenkinsfile.s390x

                                            "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                                            "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                                               
                                    String cmd = "${runITscommand} -Dmaven.repo.local=$WORK_DIR/it-local-repo -DmavenDistro=$WORK_DIR/dists/apache-maven-bin.zip -Dmaven.test.failure.ignore"
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. hack/jenkins/test-dockerized.sh

    # kubekins-test container with a kubernetes repo mapped in. See
    # k8s.io/test-infra/scenarios/kubernetes_verify.py
    
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    # Until all GOPATH references are removed from all build scripts as well,
    # explicitly disable module mode to avoid picking up user-set GO111MODULE preferences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/goroot/gc.go

    	if gccgo == "" {
    		gccgo = "gccgo"
    	}
    	bin, err := exec.LookPath(gccgo)
    	if err != nil {
    		return
    	}
    
    	allDirs, err := exec.Command(bin, "-print-search-dirs").Output()
    	if err != nil {
    		return
    	}
    	versionB, err := exec.Command(bin, "-dumpversion").Output()
    	if err != nil {
    		return
    	}
    	version := strings.TrimSpace(string(versionB))
    	machineB, err := exec.Command(bin, "-dumpmachine").Output()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_address.go

    	}
    
    	return passthroughBindIPAddresses
    }
    
    // getSidecarInboundBindIPs returns the IP that the proxy can bind to along with the sidecar specified port.
    // It looks for an unicast address, if none found, then the default wildcard address is used.
    // This will make the inbound listener bind to instance_ip:port instead of 0.0.0.0:port where applicable.
    func getSidecarInboundBindIPs(node *model.Proxy) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. release/downloadIstioCtl.sh

    printf "%s download complete!\n" "${filename}"
    
    # setup istioctl
    mkdir -p "$HOME/.istioctl/bin"
    mv "${tmp}/istioctl" "$HOME/.istioctl/bin/istioctl"
    chmod +x "$HOME/.istioctl/bin/istioctl"
    rm -r "${tmp}"
    
    # Print message
    printf "\n"
    printf "Add the istioctl to your path with:"
    printf "\n"
    printf "  export PATH=\$HOME/.istioctl/bin:\$PATH \n"
    printf "\n"
    printf "Begin the Istio pre-installation check by running:\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top