Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 172 for forkx (0.05 sec)

  1. hack/cherry_pick_pull.sh

      echo
      echo "where REMOTE is your personal fork (maybe ${UPSTREAM_REMOTE}? Consider swapping those.)."
      echo "OR consider setting UPSTREAM_REMOTE and FORK_REMOTE to different values."
      echo
      make-a-pr
      cleanbranch=""
      exit 0
    fi
    
    echo
    echo "+++ I'm about to do the following to push to GitHub (and I'm assuming ${FORK_REMOTE} is your personal fork):"
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleBuilder.java

        ExecHandleBuilder setDisplayName(String displayName);
    
        /**
         * When true, spawn the process. That is, start the process and leave it running once successfully started. When false, fork the process (the default). That is, start the process and wait for it to complete.
         */
        ExecHandleBuilder setDaemon(boolean daemon);
    
        /**
         * Sets a handler for the output streams of the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/README.md

    We have been working inside Google on a fork of Go that uses
    BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/))
    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompileRelocationIntegrationTest.groovy

        @Override
        protected String getTaskName() {
            return ":compile"
        }
    
        @Override
        String getDaemonConfiguration() {
            return "compile.groovyOptions.fork = true"
        }
    
        @Override
        String getForkOptionsObject() {
            return "compile.groovyOptions.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileRelocationIntegrationTest.groovy

        @Override
        protected String getTaskName() {
            return ":compile"
        }
    
        @Override
        String getDaemonConfiguration() {
            return "compile.options.fork = true"
        }
    
        @Override
        String getForkOptionsObject() {
            return "compile.options.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/monitor/README.md

    before returning. This helps to simplify tests that rely on starting in a particular state.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/pom.xml

            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-fork</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

                    }
                }
    
                subprojects { p ->
                    apply plugin: 'java'
                    tasks.withType(JavaCompile) { task ->
                        task.options.fork = true
                        rootProject.tasks.expireWorkers.dependsOn task
                    }
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. samples/httpbin/README.md

    # Httpbin service
    
    This sample runs [httpbin](https://httpbin.org) as an Istio service.
    Httpbin is a well-known HTTP testing service that can be used for experimenting
    with all kinds of Istio features.
    
    This sample uses a fork of the [upstream httpbin repo](https://github.com/postmanlabs/httpbin) with [multiarch image support](https://github.com/Kong/httpbin)
    
    To use it:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/syscall/syscall_test.go

    	testSetGetenv(t, "TESTENV", "AVALUE")
    	// make sure TESTENV gets set to "", not deleted
    	testSetGetenv(t, "TESTENV", "")
    }
    
    // Check that permuting child process fds doesn't interfere with
    // reporting of fork/exec status. See Issue 14979.
    func TestExecErrPermutedFds(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	attr := &os.ProcAttr{Files: []*os.File{os.Stdin, os.Stderr, os.Stdout}}
    	_, err := os.StartProcess("/", []string{"/"}, attr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top