Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 780 for bin2 (0.05 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            """
    
            when:
            succeeds("installDist")
    
            then:
            file('build/install/sample/').allDescendants() == ["not-the-root/bin/sample", "not-the-root/bin/sample.bat", "not-the-root/lib/sample.jar"] as Set
            assert file("build/install/sample/not-the-root/bin/sample").permissions == "rwxr-xr-x"
        }
    
        def "runs the classes folder for traditional applications"() {
            when:
            succeeds("run")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/gotoolchain_path.txt

    [short] skip
    
    env TESTGO_VERSION=go1.21pre3
    
    # Compile a fake toolchain to put in the path under various names.
    env GOTOOLCHAIN=
    mkdir $WORK/bin
    go build -o $WORK/bin/go1.50.0$GOEXE ./fakego.go  # adds .exe extension implicitly on Windows
    
    [!GOOS:plan9] env PATH=$WORK/bin
    [GOOS:plan9] env path=$WORK/bin
    
    go version
    stdout go1.21pre3
    
    # GOTOOLCHAIN=go1.50.0
    env GOTOOLCHAIN=go1.50.0
    ! go version
    stderr 'running go1.50.0 from PATH'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 22:21:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    	// Bind is a list of plugins that should be invoked at "Bind" extension point of the scheduling framework.
    	// The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success.
    	Bind PluginSet
    
    	// PostBind is a list of plugins that should be invoked after a pod is successfully bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        // range.
        CALIBRATION_METHOD_HISTOGRAM_MSE_SYMMETRIC = 6;
      }
    
      // Parameters required for calibration.
      // Next ID: 4
      message CalibrationParameters {
        // The number of histogram bins. Default to 512.
        int32 num_bins = 1;
        // min_percentile is only used in HISTOGRAM_PERCENTILE.
        // min_percentile is 0.001 by default.
        float min_percentile = 2;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            new File(installedJdk, "jdk-with-symlinks.2/bin/file").exists()
    
            //TODO: completely wrong; the uncompressed archive should look like this:
            // .
            // ├── bin -> zulu-11.jdk/Contents/Home/bin
            // ├── file
            // └── zulu-11.jdk
            //     └── Contents
            //         └── Home
            //             └── bin
            //                 └── file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. build/lib/release.sh

        # node_bins array.
        cp "${node_bins[@]/#/${LOCAL_OUTPUT_BINPATH}/${platform}/}" \
          "${release_stage}/node/bin/"
    
        # TODO: Docker images here
        # kube::release::create_docker_images_for_server "${release_stage}/server/bin" "${arch}"
    
        # Include the client binaries here too as they are useful debugging tools.
        local client_bins=("${KUBE_CLIENT_BINARIES[@]}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top