Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 169 for processDest (0.27 sec)

  1. src/testing/fuzz.go

    	isFuzzWorker     *bool
    
    	// corpusDir is the parent directory of the fuzz test's seed corpus within
    	// the package.
    	corpusDir = "testdata/fuzz"
    )
    
    // fuzzWorkerExitCode is used as an exit code by fuzz worker processes after an
    // internal error. This distinguishes internal errors from uncontrolled panics
    // and other failures. Keep in sync with internal/fuzz.workerExitCode.
    const fuzzWorkerExitCode = 70
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/offline-mode.apt

            be unavailable.
    
      So, offline mode has several implications, some of which may not be
      altogether obvious:
    
      * Localhost may be unavailable. Therefore, even locally installed
        server processes which work by conversing over a port may fail.
    
      * Not all "remote" repositories will fail. Specifically, if the remote
        repo uses the file:// protocol, and it doesn't refer to a shared
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/util/util.go

    	if pod == nil || len(pod.Spec.Volumes) <= 0 {
    		return defaultAction
    	}
    
    	if util.IsPodTerminated(pod, pod.Status) {
    		return false
    	}
    	return defaultAction
    }
    
    // ProcessPodVolumes processes the volumes in the given pod and adds them to the
    // desired state of the world if addVolumes is true, otherwise it removes them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top