Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,359 for executable_ (0.28 sec)

  1. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
      VLOG(2) << "Compiled PJRT executable " << executable->name()
              << " num_replicas " << executable->num_replicas()
              << " num_partitions " << executable->num_partitions();
    
      return std::move(executable);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

            when:
            run "mainExecutable"
    
            then:
            def mainExecutable = executable("build/exe/main/main")
            mainExecutable.assertExists()
            mainExecutable.exec().out == helloWorldApp.englishOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "build executable with custom compiler arg"() {
            given:
            buildFile << """
                model {
                    components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ClangToolChainTest.groovy

                assert platformToolChain.assembler.executable == 'clang'
                assert platformToolChain.cCompiler.executable == 'clang'
                assert platformToolChain.cppCompiler.executable == 'clang++'
                assert platformToolChain.objcCompiler.executable == 'clang'
                assert platformToolChain.objcppCompiler.executable == 'clang++'
                assert platformToolChain.linker.executable == 'clang++'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ErrorHandlingChangeContainer.java

    import org.gradle.api.GradleException;
    
    public class ErrorHandlingChangeContainer implements ChangeContainer {
        private final Describable executable;
        private final ChangeContainer delegate;
    
        public ErrorHandlingChangeContainer(Describable executable, ChangeContainer delegate) {
            this.executable = executable;
            this.delegate = delegate;
        }
    
        @Override
        public boolean accept(ChangeVisitor visitor) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/DefaultNativeComponentExtension.java

        private final NamedDomainObjectContainer<NativeExecutableSpec> executables;
        private final NamedDomainObjectContainer<NativeLibrarySpec> libraries;
    
        public DefaultNativeComponentExtension(NamedDomainObjectContainer<NativeExecutableSpec> executables, NamedDomainObjectContainer<NativeLibrarySpec> libraries) {
            this.executables = executables;
            this.libraries = libraries;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks_linux.go

    	checks = append(checks,
    		InPathCheck{executable: "crictl", mandatory: false, exec: execer},
    		InPathCheck{executable: "conntrack", mandatory: true, exec: execer},
    		InPathCheck{executable: "ip", mandatory: true, exec: execer},
    		InPathCheck{executable: "iptables", mandatory: true, exec: execer},
    		InPathCheck{executable: "mount", mandatory: true, exec: execer},
    		InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaInfo.java

        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavaExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavacExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def executable = Stub(ConfigurableComponentWithExecutable)
            executable.name >> "windowsDebug"
            executable.names >> Names.of("windowsDebug")
            executable.nativePlatform >> Stub(NativePlatformInternal)
            executable.toolChain >> Stub(NativeToolChainInternal)
            executable.platformToolProvider >> toolProvider
            executable.baseName >> Providers.of("test_app")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            this.executable = objectFactory.fileProperty();
            this.installedExecutable.set(getLibDirectory().map(directory -> directory.file(executable.getAsFile().get().getName())));
            // A further work around for missing ability to skip task when input file is missing (see #getInputFileIfExists below)
            getInputs().file(executable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

        private static ChangeContainer errorHandling(Describable executable, ChangeContainer wrapped) {
            return new ErrorHandlingChangeContainer(executable, wrapped);
        }
    
        private static InputFileChanges errorHandling(Describable executable, InputFileChanges wrapped) {
            ErrorHandlingChangeContainer errorHandlingChangeContainer = new ErrorHandlingChangeContainer(executable, wrapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top