Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for forkx (0.08 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
    
                        tasks.withType(JavaCompile).configureEach {
                            options.fork = true
                        }
                    }
                """
            }
            sourceFiles = subprojects.collectMany { projectDir ->
                (1..NUMBER_OF_SOURCES_PER_SUBPROJECT).collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    	if err != nil {
    		return "", "", fmt.Errorf("no pods match %q", resname)
    	}
    	return pod.Name, namespace, nil
    }
    
    // SelectorsForObject is a fork of upstream function to add additional Istio type support
    func SelectorsForObject(object runtime.Object) (namespace string, selector labels.Selector, err error) {
    	switch t := object.(type) {
    	case *gatewayapi.Gateway:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/internal/poll/fd_plan9.go

    	nfd, err := syscall.Dup(int(fd), -1)
    	if err != nil {
    		return 0, "dup", err
    	}
    	// Plan9 has no syscall.CloseOnExec but
    	// its forkAndExecInChild closes all fds
    	// not related to the fork+exec.
    	return nfd, "", nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. .github/workflows/update-rbe.yml

    on:
      workflow_dispatch:
    
    permissions:
      contents: read
    
    jobs:
      rbe:
        name: Update RBE Configs
        runs-on: ubuntu-latest
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
        - name: Update the RBE Configs
          run: |
            function map() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    }
    
    // signalDuringFork is called if we receive a signal while doing a fork.
    // We do not want signals at that time, as a signal sent to the process
    // group may be delivered to the child process, causing confusion.
    // This should never be called, because we block signals across the fork;
    // this function is just a safety check. See issue 18600 for background.
    func signalDuringFork(sig uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    tasks.test {
        setForkEvery(200)
    }
    
    tasks.compileTestGroovy {
        groovyOptions.fork("memoryInitialSize" to "128M", "memoryMaximumSize" to "1G")
    }
    
    tasks.isolatedProjectsIntegTest {
        enabled = true
    }
    
    integTest.usesJavadocCodeSnippets = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. manifests/charts/README.md

    # Istio Installer
    
    Note: If making any changes to the charts or values.yaml in this dir, first read [UPDATING-CHARTS.md](UPDATING-CHARTS.md)
    
    Istio installer is a modular, 'a-la-carte' installer for Istio. It is based on a
    fork of the Istio helm templates, refactored to increase modularity and isolation.
    
    Goals:
    - Improve upgrade experience: users should be able to gradually roll upgrades, with proper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            assertToolchainUsages(events1, jdkMetadata1, "JavaLauncher")
            assertToolchainUsages(events2, jdkMetadata2, "JavaLauncher")
        }
    
        def "emits toolchain usages for compilation that configures #option via fork options"() {
            JvmInstallationMetadata curJdk = AvailableJavaHomes.getJvmInstallationMetadata(Jvm.current())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/runtime/traceback_system_test.go

    // golang.org/x/telemetry/crashmonitor.
    func TestTracebackSystem(t *testing.T) {
    	testenv.MustHaveExec(t)
    	if runtime.GOOS == "android" {
    		t.Skip("Can't read source code for this file on Android")
    	}
    
    	// Fork+exec the crashing process.
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.Command(t, exe)
    	cmd.Env = append(cmd.Environ(), entrypointVar+"=crash")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    * [git](https://git-scm.com/) and a [GitHub account](https://github.com/join).
    
    Gradle uses pull requests for contributions. Fork [gradle/gradle](https://github.com/gradle/gradle) and clone your fork. Configure your Git username and email with:
    
        git config user.name 'First Last'
        git config user.email ******@****.***
    
    #### Import Gradle into IntelliJ
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top