Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 200 for loadsys (0.2 sec)

  1. tensorflow/compiler/jit/xla_device_compiler_client.h

      // result.
      absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) override;
    
      // Loads a serialized AOT result (`serialized_executable`) into an
      // xla::LocalExecutable and returns it.
      absl::StatusOr<std::unique_ptr<xla::LocalExecutable>> LoadExecutable(
          const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compiler_client.h

      // returns it.
      virtual absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) = 0;
    
      // Loads `serialized_executable` into an `ExecutableType` using `ClientType`.
      virtual StatusOr<std::unique_ptr<ExecutableType>> LoadExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CustomPluginIntegrationTest.groovy

    buildscript {
        dependencies {
            classpath files('external.jar')
        }
    }
    apply plugin: 'custom'
    assert 'value' == prop
    task test
    '''
    
            expect:
            succeeds('test')
        }
    
        void "loads plugin in correct environment"() {
            given:
            def implClassName = 'com.google.common.collect.Multimap'
            ArtifactBuilder builder = artifactBuilder()
            builder.sourceFile('CustomPlugin.groovy') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    		inputFile   string
    		wantErr     bool
    	}{
    		{
    			name:        "errors if unable to unmarshal bytes",
    			inputFile:   "",
    			wantConfigs: 0,
    			wantErr:     true,
    		},
    		{
    			name:        "loads valid ztunnel config_dump",
    			inputFile:   "testdata/dump.json",
    			wantConfigs: 27,
    			wantErr:     false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			cw := &ConfigWriter{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

    import java.util.function.BiConsumer;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * This is a Java compiler plugin, which must be loaded in the same classloader
     * as the one which loads the JDK compiler itself. For this reason this task lives
     * in its own subproject and uses as little dependencies as possible (in particular
     * it only depends on JDK types).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

    @Requires(UnitTestPreconditions.Windows)
    @Flaky(because = "https://github.com/gradle/gradle-private/issues/3820")
    class ConfigurationCacheReportIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "report with problem loads successfully"() {
            given:
            buildFile '''
                tasks.register('notOk') {
                    doLast { println project.name }
                }
            '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        DenseBoolArrayAttr: $truncate_in_cast
      );
    
    }
    
    
    def TF_IfrtLoadVariableOp : TF_Op<"IfrtLoadVariable", [Pure]> {
      let summary = "Loads a restored variable tensor as a tensor future";
    
      let description = [{
        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/syscall/dll_windows.go

    func getprocaddress(handle uintptr, procname *uint8) (proc uintptr, err Errno)
    
    // A DLL implements access to a single DLL.
    type DLL struct {
    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads the named DLL file into memory.
    //
    // If name is not an absolute path and is not a known system DLL used by
    // Go, Windows will search for the named DLL in many locations, causing
    // potential DLL preloading attacks.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    func DocMapToUpgradeConfiguration(gvkmap kubeadmapi.DocumentMap) (*kubeadmapi.UpgradeConfiguration, error) {
    	return documentMapToUpgradeConfiguration(gvkmap, false)
    }
    
    // LoadUpgradeConfigurationFromFile loads UpgradeConfiguration from a file.
    func LoadUpgradeConfigurationFromFile(cfgPath string, _ LoadOrDefaultConfigurationOptions) (*kubeadmapi.UpgradeConfiguration, error) {
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/build.gradle.kts

        testFixturesImplementation(project(":persistent-cache"))
        testFixturesImplementation(libs.slf4jApi)
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder test (JavaLanguagePluginTest) loads services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top