Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 171 for Executable (0.21 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

                .map(it -> (ExecutableElement) it)
                // Ensure that the elements have a stable order, as the annotation processing engine does not guarantee that for type elements.
                // The order in which the executable elements are listed should be the order in which they appear in the code but
                // we take an extra measure of care here and ensure the ordering between all elements.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

    import org.gradle.util.internal.TextUtil
    
    import java.nio.file.Path
    
    /**
     * The cross-platform builder of shell scripts that can be used to verify correctness of the
     * invocation of an executable. It uses "sh" syntax on POSIX platforms and batch files on Windows.
     */
    abstract class ShellScript {
        protected final TestFile scriptFile
    
        protected ShellScript(TestFile scriptFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        the region owned by the former will be outlined to a function with a
        `tfrt_ifrt_serving.program_id` attribute. After that, the runtime ensures
        that the outlined function is compiled into an executable and is available
        for lookup from `IfrtCall` TF ops.
    
        `variable_arg_indices` is a sorted (ascending order) array and indicates which
        element of `args` is a key to a loaded array corresponding to a variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

        public abstract String getLinkLibraryName(String libraryPath);
    
        @UsedByScanPlugin
        public abstract String getFamilyName();
    
        /**
         * Locates the given executable in the system path. Returns null if not found.
         */
        @Nullable
        public File findInPath(String name) {
            String exeName = getExecutableName(name);
            if (exeName.contains(File.separator)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks_test.go

    		{[]Checker{InPathCheck{executable: "foobarbaz", exec: exec.New()}}, true, "\t[WARNING FileExisting-foobarbaz]: foobarbaz not found in system path\n"},
    		{[]Checker{InPathCheck{executable: "foobarbaz", mandatory: true, exec: exec.New()}}, false, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    The extra functions here are stubs to satisfy the references in the C
    code generated for gcc. The build process links this stub, along with
    _cgo_export.c and *.cgo2.c, into a dynamic executable and then lets
    cgo examine the executable. Cgo records the list of shared library
    references and resolved names and writes them into a new file
    _cgo_import.go, which looks like:
    
    	//go:cgo_dynamic_linker "/lib64/ld-linux-x86-64.so.2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/internal/coverage/pods/pods.go

    // meta-data file. Pods are intended to simplify processing of
    // coverage output files in the case where we have several coverage
    // output directories containing output files derived from more
    // than one instrumented executable. In the case where the files that
    // make up a pod are spread out across multiple directories, each
    // element of the "Origins" field below will be populated with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

                problemReporter.reportProblemIfNeeded(logger, installationLocation, "Path for java installation " + installationLocation.getDisplayName() + " does not contain a java executable");
                return false;
            }
            return true;
        }
    
        private InstallationLocation canonicalize(InstallationLocation location) {
            final File file = location.getLocation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/internal/platform/supported.go

    			// see https://go.dev/cl/416174.
    			return false
    		}
    		return true
    	case "darwin":
    		return true
    	}
    	return false
    }
    
    // ExecutableHasDWARF reports whether the linked executable includes DWARF
    // symbols on goos/goarch.
    func ExecutableHasDWARF(goos, goarch string) bool {
    	switch goos {
    	case "plan9", "ios":
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    As seen in the output, the `build` task compiles, assembles, tests, and checks the code.
    
    The tasks are printed in order of execution.
    The `jar` tasks is a dependency of the `build` task.
    
    The `jar` task creates an executable JAR file of the app.
    Let's run it by itself:
    [source,text]
    ----
    $ ./gradlew jar
    ----
    ----
    > Task :app:compileJava
    > Task :app:processResources
    > Task :app:classes
    > Task :app:jar
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top