Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,133 for programs (0.21 sec)

  1. tensorflow/compiler/jit/pjrt_device_compiler_client.h

          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
          const std::string& serialized_executable) override;
    
      // No-op. PJRT uses futures and waiting for programs to finish isn't
      // necessary.
      void WaitForProgramsToFinish() override;
    
      xla::PjRtClient* client() const override { return client_; }
    
     private:
      xla::PjRtClient* const client_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/syscall/syscall_wasip1.go

    // because we need Go programs to be portable across platforms. WASI does
    // not have a mechanism to to spawn processes so there is no reason for an
    // application to take a dependency on this type.
    type Rusage struct {
    	Utime Timeval
    	Stime Timeval
    }
    
    // ProcAttr is a placeholder to allow compilation of the [os/exec] package
    // because we need Go programs to be portable across platforms. WASI does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/os/dir_darwin.go

    		}
    		if entptr == nil { // EOF
    			break
    		}
    		// Darwin may return a zero inode when a directory entry has been
    		// deleted but not yet removed from the directory. The man page for
    		// getdirentries(2) states that programs are responsible for skipping
    		// those entries:
    		//
    		//   Users of getdirentries() should skip entries with d_fileno = 0,
    		//   as such entries represent files which have been deleted but not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    	tf.SetLinesForContent(content)
    	...
    	pass.Reportf(tf.LineStart(line), "oops")
    
    # Modular analysis with Facts
    
    To improve efficiency and scalability, large programs are routinely
    built using separate compilation: units of the program are compiled
    separately, and recompiled only when one of their dependencies changes;
    independent modules may be compiled in parallel. The same technique may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    	switch pass.Pkg.Path() {
    	case "encoding/gob", "encoding/json", "encoding/xml", "encoding/asn1":
    		// These packages know how to use their own APIs.
    		// Sometimes they are testing what happens to incorrect programs.
    		return nil, nil
    	}
    
    	// Note: (*"encoding/json".Decoder).Decode, (* "encoding/gob".Decoder).Decode
    	// and (* "encoding/xml".Decoder).Decode are methods and can be a typeutil.Callee
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

                        stage1CacheDir,
                        "Program",
                        accessorsClassPath
                    )
    
                    verify(host).cache(
                        DummyCompiledScript(classLoaders[0].loadClass("Program")),
                        stage1ProgramId
                    )
    
                    verify(host).cachedClassFor(stage2ProgramId)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device_compiler_client.cc

      for (auto* executor : client_->backend().stream_executors()) {
        bool ok = executor->SynchronizeAllActivity();
        if (!ok) {
          LOG(ERROR) << "Error synchronizing activity while waiting for all "
                        "programs to complete";
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        - name: Cleanup Gradle Daemons
          run: ./gradlew --stop
          if: ${{ matrix.language == 'java' }}
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
        #    and modify them (or add more) to build your code if your project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    // to the structural schema.
    // Each CompilationResult may contain:
    //   - non-nil Program, nil Error: The program was compiled successfully
    //   - nil Program, non-nil Error: Compilation resulted in an error
    //   - nil Program, nil Error: The provided rule was empty so compilation was not attempted
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // If the telemetry mode is "off", Open is a no-op. Otherwise, it opens the
    // counter file on disk and starts to mmap telemetry counters to the file.
    // Open also persists any counters already created in the current process.
    //
    // Programs using telemetry should call Open exactly once.
    func Open() {
    	counter.Open()
    }
    
    // CountFlags creates a counter for every flag that is set
    // and increments the counter. The name of the counter is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top