Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 292 for forkx (0.18 sec)

  1. src/os/exec_posix.go

    	}
    
    	pid, h, e := syscall.StartProcess(name, argv, sysattr)
    
    	// Make sure we don't run the finalizers of attr.Files.
    	runtime.KeepAlive(attr)
    
    	if e != nil {
    		return nil, &PathError{Op: "fork/exec", Path: name, Err: e}
    	}
    
    	// For Windows, syscall.StartProcess above already returned a process handle.
    	if runtime.GOOS != "windows" {
    		var ok bool
    		h, ok = getPidfd(sysattr.Sys)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

    /// converter.
    Attribute mlir::quantfork::quantizeAttrUniform(
        Attribute realValue, quant::UniformQuantizedType quantizedElementType,
        const UniformQuantizedValueConverter &converter, Type &outConvertedType) {
      // Fork to handle different variants of constants supported.
      if (mlir::isa<DenseFPElementsAttr>(realValue)) {
        // Dense tensor or vector constant.
        auto converted =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            outputContains("Appending implementation to build cache key:")
            outputContains("Appending additional implementation to build cache key:")
            outputContains("Appending input value fingerprint for 'options.fork'")
            outputContains("Appending input file fingerprints for 'classpath'")
            def sourcesDebugLogging = "Appending input file fingerprints for 'stableSources' to build cache key: "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            // The msbuild behavior occurs because we capture the stdout/stderr from Gradle instead of letting msbuild collect it and fork the daemon child process.
            // We direct the output because msbuild jumbles up stdout/stderr in ways that mess up our output scraping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

                scaladoc.maxMemory = '234M'
            """
            when:
            succeeds scaladoc, "-i"
    
            then:
            // Looks like
            // Started Gradle worker daemon (0.399 secs) with fork options DaemonForkOptions{executable=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java, minHeapSize=null, maxHeapSize=234M, jvmArgs=[], keepAliveMode=DAEMON}.
            outputContains("maxHeapSize=234M")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pkg/util/oom/oom_linux.go

    				}
    			}
    		}
    		if !continueAdjusting {
    			return nil
    		}
    		// There's a slight race. A process might have forked just before we write its OOM score adjust.
    		// The fork might copy the parent process's old OOM score, then this function might execute and
    		// update the parent's OOM score, but the forked process id might not be reflected in cgroup.procs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

         * this mojo execution is going to run in.
         */
        private String lifecyclePhase;
    
        /**
         * The executions to fork before this execution, indexed by the groupId:artifactId:version of the project on which
         * the forked execution are to be run and in reactor build order.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_replace.txt

    go build -o a2.exe .
    exec ./a2.exe
    stdout 'Concurrency is not parallelism.'
    
    # The module path of the replacement doesn't need to match.
    # (For example, it could be a long-running fork with its own import path.)
    cp go.mod.orig go.mod
    go mod edit -replace=rsc.io/quote/v3=./local/not-rsc.io/quote/v3
    go build -o a3.exe .
    exec ./a3.exe
    stdout 'Clear is better than clever.'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is a fork of internal/gover for use by x/tools until
    // go1.21 and earlier are no longer supported by x/tools.
    
    package versions
    
    import "strings"
    
    // A gover is a parsed Go gover: major[.Minor[.Patch]][kind[pre]]
    // The numbers are the original decimal strings to avoid integer overflows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    		os.Setenv(telemetryChildVar, "2")
    		upload := os.Getenv(telemetryUploadVar) == "1"
    		child(reportCrashes, upload, config.UploadStartTime, config.UploadURL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top