Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 165 for processDest (0.26 sec)

  1. src/runtime/os3_solaris.go

    	if ret != 0 {
    		print("runtime: failed to create new OS thread (have ", mcount(), " already; errno=", ret, ")\n")
    		if ret == _EAGAIN {
    			println("runtime: may need to increase max user processes (ulimit -u)")
    		}
    		throw("newosproc")
    	}
    }
    
    func exitThread(wait *atomic.Uint32) {
    	// We should never reach exitThread on Solaris because we let
    	// libc clean up threads.
    	throw("exitThread")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                    delegate = standardDelegate;
                }
            }
    
            return delegate.calculateLifecycleMappings(session, project, lifecycle, lifecyclePhase);
        }
    
        /**
         * Post-processes the effective configuration for the specified mojo execution. This step discards all parameters
         * from the configuration that are not applicable to the mojo and injects the default values for any missing
         * parameters.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	if err != nil {
    		runtime.HandleError(fmt.Errorf("Couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    	adc.pvcQueue.Add(key)
    }
    
    // pvcWorker processes items from pvcQueue
    func (adc *attachDetachController) pvcWorker(ctx context.Context) {
    	for adc.processNextItem(klog.FromContext(ctx)) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/options.go

    	NodeLabels map[string]string
    	// lockFilePath is the path that kubelet will use to as a lock file.
    	// It uses this file as a lock to synchronize with other kubelet processes
    	// that may be running.
    	LockFilePath string
    	// ExitOnLockContention is a flag that signifies to the kubelet that it is running
    	// in "bootstrap" mode. This requires that 'LockFilePath' has been set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/noder.go

    }
    
    // parseGoEmbed parses the text following "//go:embed" to extract the glob patterns.
    // It accepts unquoted space-separated patterns as well as double-quoted and back-quoted Go strings.
    // go/build/read.go also processes these strings and contains similar logic.
    func parseGoEmbed(args string) ([]string, error) {
    	var list []string
    	for args = strings.TrimSpace(args); args != ""; args = strings.TrimSpace(args) {
    		var path string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. cmd/bucket-replication-metrics.go

    	}
    }
    
    // incrementBytes add bytes reported for a bucket/target.
    func (m *rateMeasurement) incrementBytes(bytes uint64) {
    	atomic.AddUint64(&m.bytesSinceLastWindow, bytes)
    }
    
    // updateExponentialMovingAverage processes the measurements captured so far.
    func (m *rateMeasurement) updateExponentialMovingAverage(endTime time.Time) {
    	// Calculate aggregate avg bandwidth and exp window avg
    	m.lock.Lock()
    	defer func() {
    		m.startTime = endTime
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    func ConvertJSONSchemaProps(in *apiextensions.JSONSchemaProps, out *spec.Schema) error {
    	return ConvertJSONSchemaPropsWithPostProcess(in, out, nil)
    }
    
    // PostProcessFunc post-processes one node of a spec.Schema.
    type PostProcessFunc func(*spec.Schema) error
    
    // ConvertJSONSchemaPropsWithPostProcess converts the schema from apiextensions.JSONSchemaPropos to go-openapi/spec.Schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/input.go

    				in.text = in.Stack.Text()
    				return tok
    			}
    		}
    	}
    	in.Error("recursive macro invocation")
    	return 0
    }
    
    func (in *Input) Text() string {
    	return in.text
    }
    
    // hash processes a # preprocessor directive. It reports whether it completes.
    func (in *Input) hash() bool {
    	// We have a '#'; it must be followed by a known word (define, include, etc.).
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/os/exec.go

    	return p.release()
    }
    
    // Kill causes the [Process] to exit immediately. Kill does not wait until
    // the Process has actually exited. This only kills the Process itself,
    // not any other processes it may have started.
    func (p *Process) Kill() error {
    	return p.kill()
    }
    
    // Wait waits for the [Process] to exit, and then returns a
    // ProcessState describing its status and an error, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/os/file_windows.go

    }
    
    // Pipe returns a connected pair of Files; reads from r return bytes written to w.
    // It returns the files and an error, if any. The Windows handles underlying
    // the returned files are marked as inheritable by child processes.
    func Pipe() (r *File, w *File, err error) {
    	var p [2]syscall.Handle
    	e := syscall.Pipe(p[:])
    	if e != nil {
    		return nil, nil, NewSyscallError("pipe", e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top