Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,216 for Forked (0.18 sec)

  1. pkg/filewatcher/worker.go

    	"fmt"
    	"io"
    	"os"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    type worker struct {
    	mu sync.RWMutex
    
    	// watcher is an fsnotify watcher that watches the parent
    	// dir of watchedFiles.
    	dirWatcher *fsnotify.Watcher
    
    	// The worker maintains a map of channels keyed by watched file path.
    	// The worker watches parent path of given path,
    	// and filters out events of given path, then redirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/workerApiProject/buildSrc/src/main/resources/META-INF/gradle-plugins/worker-plugin.properties

    implementation-class=com.example.worker.WorkerPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 54 bytes
    - Viewed (0)
  3. hack/testdata/sorted-pods/sorted-pod2.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod2
      creationTimestamp: "2018-08-30T14:10:55Z"
      labels:
        name: sorted-pod2-label
    spec:
      containers:
      - name: kubernetes-pause1
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "1G"
            cpu: "0.5"
          limits:
            memory: "2G"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 347 bytes
    - Viewed (0)
  4. hack/testdata/sorted-pods/sorted-pod3.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod3
      creationTimestamp: "2018-08-30T14:10:53Z"
      labels:
        name: sorted-pod1-label
    spec:
      containers:
      - name: kubernetes-pause3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 223 bytes
    - Viewed (0)
  5. src/os/os_test.go

    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    	cmd := testenv.Command(t, Args[0], "-test.run=^TestGetppid$")
    	cmd.Env = append(Environ(), "GO_WANT_HELPER_PROCESS=1")
    
    	// verify that Getppid() from the forked process reports our process id
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	childPpid := string(output)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. hack/testdata/sorted-pods/sorted-pod1.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod1
      creationTimestamp: "2018-08-30T14:10:58Z"
      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  7. operator/pkg/object/testdata/well-formed.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 305 bytes
    - Viewed (0)
  8. src/runtime/time.go

    	return 0
    }
    
    // unlockAndRun unlocks and runs the timer t (which must be locked).
    // If t is in a timer set (t.ts != nil), the caller must also have locked the timer set,
    // and this call will temporarily unlock the timer set while running the timer function.
    // unlockAndRun returns with t unlocked and t.ts (re-)locked.
    //
    //go:systemstack
    func (t *timer) unlockAndRun(now int64) {
    	t.trace("unlockAndRun")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// because of the additional overheads of using scavenged memory.
    	worked *= 1 + scavengeCostRatio
    
    	// sleepTime is the amount of time we're going to sleep, based on the amount
    	// of time we worked, and the sleepRatio.
    	sleepTime := int64(worked / s.sleepRatio)
    
    	var slept int64
    	if s.sleepStub == nil {
    		// Set the timer.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/resources/checkstyle-noframes-sorted.xsl

    Sterling Greene <******@****.***> 1692279701 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 17 13:41:41 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top