Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 298 for Executable (0.12 sec)

  1. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    # Regression test for https://go.dev/issue/62119:
    # A 'go' command cross-compiled with a different GOHOSTOS
    # should be able to locate its GOROOT using os.Executable.
    #
    # (This also tests a 'go' command built with -trimpath
    # that is not cross-compiled, since we need to build that
    # configuration for the test anyway.)
    
    [short] skip 'builds and links another cmd/go'
    
    mkdir $WORK/new/bin
    mkdir $WORK/new/bin/${GOOS}_${GOARCH}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/greetingPlugin/tests/sanityCheck.sample.conf

    executable: gradle
    args: "hello -q"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 71 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/fileCollections/tests/fileCollectionsConventions.sample.conf

    executable: gradle
    args: conventions
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 13:03:07 UTC 2024
    - 105 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/tests/propertyConventionCallsites.sample.conf

    # tag::cli[]
    # gradle show
    # end::cli[]
    executable: gradle
    args: hello
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:09 UTC 2024
    - 125 bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/SpecificInstallationToolchainSpec.java

            }
        }
    
        public static SpecificInstallationToolchainSpec fromJavaExecutable(ObjectFactory objectFactory, String executable) {
            return objectFactory.newInstance(SpecificInstallationToolchainSpec.class, JavaExecutableUtils.resolveJavaHomeOfExecutable(executable));
        }
    
        @Override
        public Key toKey() {
            return new Key(javaHome);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.sample.conf

    executable: gradle
    args: dependencies --configuration testRuntimeClasspath
    expected-output-file: checkTaskOutput.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 177 bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

            return getVersionFromJavaHome(jvm.getJavaHome());
        }
    
        @Override
        public int getJavaVersionMajor(String javaCommand) {
            File executable = new File(javaCommand);
            File parentFolder = executable.getParentFile();
            if(parentFolder == null || !parentFolder.exists()) {
                Exception cause = new NoSuchFileException(javaCommand);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device_compiler_client.h

          const XlaCompiler::CompilationResult& result) override;
    
      // Returns a serialized AOT result obtained by exporting the available
      // `executable` using the XlaCompiler.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::LocalExecutable& executable) override;
    
      // Returns a serialized AOT result obtained by compiling `result` into an AOT
      // result.
      absl::StatusOr<std::string> BuildSerializedExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/tests/sanityCheck.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 31 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/tests/dependenciesBlock.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:36:36 UTC 2024
    - 78 bytes
    - Viewed (0)
Back to top