Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 681 for effort (0.12 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    			return true
    		}
    	}
    	return false
    }
    
    // Graph returns the graph of module requirements loaded from the current
    // root modules (as reported by RootModules).
    //
    // Graph always makes a best effort to load the requirement graph despite any
    // errors, and always returns a non-nil *ModuleGraph.
    //
    // If the requirements of any relevant module fail to load, Graph also
    // returns a non-nil error of type *mvs.BuildListError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	//	is really slim.
    	//	2. When working with old version containers which have no restart count label,
    	//	we can only assume their restart count is 0.
    	// Anyhow, we only promised "best-effort" restart count reporting, we can just ignore
    	// these limitations now.
    	// TODO: move this comment to SyncPod.
    	podSandboxIDs, err := m.getSandboxIDByPodUID(ctx, uid, nil)
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    // during memory allocation) further ensures that chunks it identifies as "dense" are
    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// always indicates a dead frame, and the effect of the inversion on the
    	// scan is to hide those dead frames, so the scan is still okay:
    	// what's left on the panic stack are exactly (and only) the dead frames.
    	//
    	// We require callback != nil here because only when callback != nil
    	// do we know that gentraceback is being called in a "must be correct"
    	// context as opposed to a "best effort" context. The tracebacks with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    			if err == nil {
    				err = modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements())
    			}
    		}
    	}()
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := modfetch.SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

            # in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
            - name: "mount-bpffs"
              image: gcr.io/istio-testing/calico/node:v3.27.0
              imagePullPolicy: IfNotPresent
              command: ["calico-node", "-init", "-best-effort"]
              volumeMounts:
                - mountPath: /sys/fs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Value string `json:"value,omitempty" protobuf:"bytes,3,opt,name=value"`
    	// Effect indicates the taint effect to match. Empty means match all taint effects.
    	// When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
    	// +optional
    	Effect TaintEffect `json:"effect,omitempty" protobuf:"bytes,4,opt,name=effect,casttype=TaintEffect"`
    	// TolerationSeconds represents the period of time the toleration (which must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    const freezeStopWait = 0x7fffffff
    
    // freezing is set to non-zero if the runtime is trying to freeze the
    // world.
    var freezing atomic.Bool
    
    // Similar to stopTheWorld but best-effort and can be called several times.
    // There is no reverse operation, used during crashing.
    // This function must not lock any mutexes.
    func freezetheworld() {
    	freezing.Store(true)
    	if debug.dontfreezetheworld > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    // BestEffortInferServiceMTLSMode infers the mTLS mode for the service + port from all authentication
    // policies (both alpha and beta) in the system. The function always returns MTLSUnknown for external service.
    // The result is a best effort. It is because the PeerAuthentication is workload-based, this function is unable
    // to compute the correct service mTLS mode without knowing service to workload binding. For now, this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Note: We could decide that vet should compute export data for
    	// all analyses, in which case we don't need to include the flags here.
    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    	// It seems better to let the flags disable export analysis too.
    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top