Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 508 for bin2 (0.07 sec)

  1. pilot/pkg/networking/core/listener_inbound.go

    	// telemetry.
    	port model.ServiceInstancePort
    	// bind determines where (IP) this filter chain should bind. Note: typically we just end up using
    	// 'virtual' listener and do not literally bind to port; in these cases this just impacts naming
    	// and telemetry.
    	bind string
    
    	// extraBind is string slice and each element is similar with bind address and support multiple addresses for 'virtual' listener
    	extraBind []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. src/run.bash

    #
    # GO_TEST_TIMEOUT_SCALE: a non-negative integer factor to scale test timeout by.
    # Defaults to 1.
    
    set -e
    
    if [ ! -f ../bin/go ]; then
    	echo 'run.bash must be run from $GOROOT/src after installing cmd/go' 1>&2
    	exit 1
    fi
    
    export GOENV=off
    eval $(../bin/go tool dist env)
    
    unset CDPATH	# in case user has it set
    
    export GOHOSTOS
    export CC
    
    # no core files, please
    ulimit -c 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm.go

    // If zero is 0, sets res = in2. If sel is 0, sets res = in1.
    // If sign is not 0, sets res = in1 + -in2. Otherwise, sets res = in1 + in2
    //
    //go:noescape
    func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    
    // Point addition. Sets res = in1 + in2. Returns one if the two input points
    // were equal and zero otherwise. If in1 or in2 are the point at infinity, res
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        def configureServer(boolean expectHead) {
            if (expectHead) {
                server.expect(server.head("/gradle-bin.zip"))
            }
            server.expect(server.get("/gradle-bin.zip").sendFile(distribution.binDistribution))
            server.start()
        }
    
        def "wrapper execution fails when using bad checksum"() {
            given:
            configureServer(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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