Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for forced (0.16 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
                configurations {
                    conf
                    forced {
                        extendsFrom conf
                    }
                    substituted {
                        extendsFrom conf
                    }
                }
                configurations.forced.resolutionStrategy.force 'org:leaf:1.0'
                configurations.substituted.resolutionStrategy.dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/reflect/value.go

    	// Using an unexported field forces flagRO.
    	if !field.Name.IsExported() {
    		if field.Embedded() {
    			fl |= flagEmbedRO
    		} else {
    			fl |= flagStickyRO
    		}
    	}
    	// Either flagIndir is set and v.ptr points at struct,
    	// or flagIndir is not set and v.ptr is the actual struct data.
    	// In the former case, we want v.ptr + offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	exithook.Run(code)
    }
    
    // start forcegc helper goroutine
    func init() {
    	go forcegchelper()
    }
    
    func forcegchelper() {
    	forcegc.g = getg()
    	lockInit(&forcegc.lock, lockRankForcegc)
    	for {
    		lock(&forcegc.lock)
    		if forcegc.idle.Load() {
    			throw("forcegc: phase error")
    		}
    		forcegc.idle.Store(true)
    		goparkunlock(&forcegc.lock, waitReasonForceGCIdle, traceBlockSystemGoroutine, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		// changed here.
    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    		// like hard-coded forced returns or panics that make
    		// code unreachable. It's unreasonable to insist on files
    		// not having any unreachable code during "go test".
    		// (buildall.bash still has -unreachable enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		deps = append(deps, "math")
    	}
    	// Using the race detector forces an import of runtime/race.
    	if cfg.BuildRace {
    		deps = append(deps, "runtime/race")
    	}
    	// Using memory sanitizer forces an import of runtime/msan.
    	if cfg.BuildMSan {
    		deps = append(deps, "runtime/msan")
    	}
    	// Using address sanitizer forces an import of runtime/asan.
    	if cfg.BuildASan {
    		deps = append(deps, "runtime/asan")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	}
    
    	// TODO: this should be using the podWorker's pod store as authoritative, since
    	// the mirrorPod might still exist, the pod may have been force deleted but
    	// is still terminating (users should be able to view logs of force deleted static pods
    	// based on full name).
    	var podUID types.UID
    	pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(pod)
    	if wasMirror {
    		if pod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    // a dry-run that helps skip the nodes that may have hung drives. By default
    // restart/stop will ignore the servers that are hung on drives. You can use
    // 'force' param to force restart even with hung drives if needed.
    func (a adminAPIHandlers) ServiceV2Handler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    	action := vars["action"]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	testCases := []struct {
    		name        string
    		decorator   func(runtime.Object)
    		beginCreate BeginCreateFunc
    		afterCreate AfterCreateFunc
    		// the TTLFunc is an easy hook to force a failure
    		ttl              func(obj runtime.Object, existing uint64, update bool) (uint64, error)
    		expectError      bool
    		expectAnnotation string   // to test object mutations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
    
      // Attempt to constant fold the operation.
      auto abstract_op = op->getRegisteredInfo();
      LogicalResult folded = failure();
      if (abstract_op) {
        folded = abstract_op->foldHook(op, constant_operands, fold_results);
      }
      // Attempt dialect fallback if op's fold hook failed.
      if (failed(folded)) {
        Dialect* dialect = op->getDialect();
        if (!dialect) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top