Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,294 for Executable (0.67 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CommandLineJavaCompiler.java

            }
    
            String executable = ((CommandLineJavaCompileSpec) spec).getExecutable().toString();
            LOGGER.info("Compiling with Java command line compiler '{}'.", executable);
    
            ExecHandle handle = createCompilerHandle(executable, spec);
            executeCompiler(handle);
    
            return WorkResults.didWork(true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: modules/number-utils
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: modules/string-utils
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: my-app
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: my-utils
        executable: gradle
        args: tasks -q
    },{
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 222 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: include-plugin-build
        executable: gradle
        args: tasks
    }, {
        execution-subdirectory: url-verifier-plugin
        executable: gradle
        args: tasks
    }, {
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 240 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/java-gradle-plugin-check.sample.conf

    commands: [{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/plugin-check.sample.conf

    commands: [{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/dependencyReports.sample.conf

    commands: [{
        executable: gradle
        args: "-q :listResolvedArtifacts"
        expected-output-file: listResolvedArtifacts.out
    },
    {
        executable: gradle
        args: "-q :graphResolvedComponents"
        expected-output-file: graphResolvedComponents.out
    },
    {
        executable: gradle
        args: "-q :graphResolvedComponentsAndFiles"
        expected-output-file: graphResolvedComponentsAndFiles.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            File executable = commandLocation(command);
            if (executable.isFile()) {
                return executable;
            }
    
            if (userSupplied) { //then we want to validate strictly
                throw new JavaHomeException(String.format("The supplied javaHome seems to be invalid."
                    + " I cannot find the %s executable. Tried location: %s", command, executable.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/DefaultGccCommandLineToolConfiguration.java

        private String executable;
    
        public DefaultGccCommandLineToolConfiguration(ToolType toolType, String defaultExecutable) {
            super(toolType);
            this.executable = defaultExecutable;
        }
    
        @Override
        public String getExecutable() {
            return executable;
        }
    
        @Override
        public void setExecutable(String file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorker.java

        private final String name;
        private final File executable;
        private final ExecActionFactory execActionFactory;
    
        public DefaultCommandLineToolInvocationWorker(String name, File executable, ExecActionFactory execActionFactory) {
            this.name = name;
            this.executable = executable;
            this.execActionFactory = execActionFactory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top