Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for forkx (0.04 sec)

  1. src/internal/profile/graph.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package profile represents a pprof profile as a directed graph.
    //
    // This package is a simplified fork of github.com/google/pprof/internal/graph.
    package profile
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    )
    
    // Options encodes the options for constructing a graph
    type Options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_amd64.go

    package syscall
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit \
    	SYS_FORK                     = 2   // { int fork(void); }
    	SYS_READ                     = 3   // { ssize_t read(int fd, void *buf, \
    	SYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    		return nil, &PathError{Op: "open", Path: name, Err: e}
    	}
    
    	// open(2) itself won't handle the sticky bit on *BSD and Solaris
    	if setSticky {
    		setStickyBit(name)
    	}
    
    	// There's a race here with fork/exec, which we are
    	// content to live with. See ../syscall/exec_unix.go.
    	if !supportsCloseOnExec {
    		syscall.CloseOnExec(r)
    	}
    
    	f := newFile(r, name, kindOpenFile, unix.HasNonblockFlag(flag))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            // The test source set will cause errors
            possibleFileLocations.put(writeJavaCausingTwoCompilationErrors("FooTest", "test").absolutePath, 2)
    
            when:
            // Special flag to fork the compiler, see the setup()
            fails("compileTestJava")
    
            then:
            verifyAll(receivedProblem(0)) {
                assertProblem(it, "ERROR", true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            def compileTask = language == CompiledLanguage.GROOVY ? "GroovyCompile" : "JavaCompile"
            buildFile << """
            tasks.withType($compileTask) {
                options.incremental = true
                options.fork = true
                options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'
            }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_386.go

    package syscall
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit \
    	SYS_FORK                     = 2   // { int fork(void); }
    	SYS_READ                     = 3   // { ssize_t read(int fd, void *buf, \
    	SYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_arm.go

    package syscall
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit \
    	SYS_FORK                     = 2   // { int fork(void); }
    	SYS_READ                     = 3   // { ssize_t read(int fd, void *buf, \
    	SYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_dragonfly_amd64.go

    //go:build amd64 && dragonfly
    
    package syscall
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT          = 1   // { void exit(int rval); }
    	SYS_FORK          = 2   // { int fork(void); }
    	SYS_READ          = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE         = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

        TF_SetStatus(status, TF_OK, "");
        return n;
      };
      tf_gcs_filesystem::RamFileBlockCache cache(block_size, block_size, 0,
                                                 fetcher);
      // Fork off thread for parallel read.
      std::unique_ptr<Thread> concurrent(
          Env::Default()->StartThread({}, "concurrent", [block_size, &cache] {
            std::vector<char> out;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    By default, a worker daemon starts with a maximum heap of 512MB.
    This can be changed by adjusting the workers' fork options.
    
    executable::
    A daemon is considered compatible only if it uses the same Java executable.
    
    classpath::
    A daemon is considered compatible if its classpath contains all the classpath entries requested. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top