Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for pdfork (0.2 sec)

  1. go.mod

    	github.com/hashicorp/go-uuid v1.0.3 // indirect
    	github.com/hashicorp/golang-lru v1.0.2 // indirect
    	github.com/jcmturner/aescts/v2 v2.0.0 // indirect
    	github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
    	github.com/jcmturner/gofork v1.7.6 // indirect
    	github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
    	github.com/jcmturner/rpc/v2 v2.0.3 // indirect
    	github.com/jedib0t/go-pretty/v6 v6.5.9 // indirect
    	github.com/jessevdk/go-flags v1.5.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

            test.excludes.empty
            test.filter.includePatterns == [TEST_PATTERN_1] as Set
            test.filter.commandLineIncludePatterns == [TEST_PATTERN_2] as Set
        }
    
        def "jvm arg providers are added to java fork options"() {
            when:
            test.jvmArgumentProviders << new CommandLineArgumentProvider() {
                @Override
                Iterable<String> asArguments() {
                    return ["First", "Second"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin.go

    	libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_kill_trampoline)), unsafe.Pointer(&t))
    	return
    }
    func pthread_kill_trampoline()
    
    // osinit_hack is a clumsy hack to work around Apple libc bugs
    // causing fork+exec to hang in the child process intermittently.
    // See go.dev/issue/33565 and go.dev/issue/56784 for a few reports.
    //
    // The stacks obtained from the hung child processes are in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

         * or by using the {@link #withDebug(boolean)} method.
         * <p>
         * When {@link #withEnvironment(Map)} is specified, running with debug is not allowed.
         * Debug mode runs "in process" and we need to fork a separate process to pass environment variables.
         *
         * @return whether the build should be executed in the same process
         * @since 2.9
         */
        public abstract boolean isDebug();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
    // executed:
    //
    //   1. It generates a warning if there is more than one active
    //   thread.  This is because it's safe to fork() or clone() only
    //   when there is a single thread.
    //
    //   2. The parent process clone()s a sub-process and runs the death
    //   test in it; the sub-process exits with code 0 at the end of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            } finally {
                lock.unlock();
            }
    
            // At this point:
            // If in daemon mode, the process has started successfully and all streams to the process have been closed
            // If in fork mode, the process has completed and all cleanup has been done
            // In both cases, all asynchronous work for the process has completed and we're done
    
            return result();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

            if (environment != null && debug) {
                throw new InvalidRunnerConfigurationException("Debug mode is not allowed when environment variables are specified. " +
                    "Debug mode runs 'in process' but we need to fork a separate process to pass environment variables. " +
                    "To run with debug mode, please remove environment variables.");
            }
    
            File testKitDir = createTestKitDir(testKitDirProvider);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. src/syscall/exec_windows.go

    // Copyright 2009 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.
    
    // Fork, exec, wait, etc.
    
    package syscall
    
    import (
    	"internal/bytealg"
    	"runtime"
    	"sync"
    	"unicode/utf16"
    	"unsafe"
    )
    
    // ForkLock is not used on Windows.
    var ForkLock sync.RWMutex
    
    // EscapeArg rewrites command line argument s as prescribed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
    // executed:
    //
    //   1. It generates a warning if there is more than one active
    //   thread.  This is because it's safe to fork() or clone() only
    //   when there is a single thread.
    //
    //   2. The parent process clone()s a sub-process and runs the death
    //   test in it; the sub-process exits with code 0 at the end of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/runtime/os_darwin.go

    // not support timed waits but is async-signal-safe.
    func sigNoteSetup(*note) {
    	if sigNoteRead != 0 || sigNoteWrite != 0 {
    		// Generalizing this would require avoiding the pipe-fork-closeonexec race, which entangles syscall.
    		throw("duplicate sigNoteSetup")
    	}
    	var errno int32
    	sigNoteRead, sigNoteWrite, errno = pipe()
    	if errno != 0 {
    		throw("pipe failed")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top