Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for processDest (0.17 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Support fine-grained supplemental groups policy (KEP-3619), which enables fine-grained control for supplementary groups in the first container processes. You can choose whether to include groups defined in the container image(/etc/groups) for the container's primary uid or not. ([#117842](https://github.com/kubernetes/kubernetes/pull/117842), [@everpeace](https://github.com/everpeace)) [SIG API Machinery,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // command to be installed (not just a library).
    // Packages named "main" are treated as commands.
    func (p *Package) IsCommand() bool {
    	return p.Name == "main"
    }
    
    // ImportDir is like [Import] but processes the Go package found in
    // the named directory.
    func (ctxt *Context) ImportDir(dir string, mode ImportMode) (*Package, error) {
    	return ctxt.Import(".", dir, mode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    	jm.orphanQueue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and marks them done.
    // It enforces that the syncHandler is never invoked concurrently with the same key.
    func (jm *Controller) worker(ctx context.Context) {
    	for jm.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	}
    	t.isParallel = true
    	if t.parent.barrier == nil {
    		// T.Parallel has no effect when fuzzing.
    		// Multiple processes may run in parallel, but only one input can run at a
    		// time per process so we can attribute crashes to specific inputs.
    		return
    	}
    
    	// We don't want to include the time we spend waiting for serial tests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/os/os_test.go

    			// Lock half the goroutines in their own operating system
    			// thread to exercise more scheduler possibilities.
    			if i%2 == 1 {
    				// On Plan 9, after calling LockOSThread, the goroutines
    				// run on different processes which don't share the working
    				// directory. This used to be an issue because Go expects
    				// the working directory to be program-wide.
    				// See issue 9428.
    				runtime.LockOSThread()
    			}
    			select {
    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. src/cmd/cgo/gcc.go

    	if strings.HasPrefix(s, "enum_") {
    		return "enum " + s[len("enum_"):]
    	}
    	if strings.HasPrefix(s, "sizeof_") {
    		return "sizeof(" + cname(s[len("sizeof_"):]) + ")"
    	}
    	return s
    }
    
    // ProcessCgoDirectives processes the import C preamble:
    //  1. discards all #cgo CFLAGS, LDFLAGS, nocallback and noescape directives,
    //     so they don't make their way into _cgo_export.h.
    //  2. parse the nocallback and noescape directives.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top