Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Option (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        are only kept in the context rather than the ops folded/IR mutated.
      }];
    
      let constructor = "TF::CreateTFShapeInferencePass()";
    
      let options = [
        Option<"max_iterations_", "max-iterations", "int64_t", /*default=*/"10",
               "Maximum shape inference iterations">,
        Option<"input_arg_shapes_", "input-arg-shapes", "std::string", /*default=*/"",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	startTime := time.Now()
    	bucket := ri.Bucket
    	object := ri.Name
    
    	// set defaults for replication action based on operation being performed - actual
    	// replication action can only be determined after stat on remote. This default is
    	// needed for updating replication metrics correctly when target is offline.
    	rAction := replicateMetadata
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    func actionList(root *Action) []*Action {
    	seen := map[*Action]bool{}
    	all := []*Action{}
    	var walk func(*Action)
    	walk = func(a *Action) {
    		if seen[a] {
    			return
    		}
    		seen[a] = true
    		for _, a1 := range a.Deps {
    			walk(a1)
    		}
    		all = append(all, a)
    	}
    	walk(root)
    	return all
    }
    
    // Do runs the action graph rooted at root.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	resourceVersion := accessor.GetResourceVersion()
    
    	options := metav1.NewDeleteOptions(0)
    	options.Preconditions = &metav1.Preconditions{ResourceVersion: &resourceVersion}
    
    	// delete object
    	_, wasDeleted, err := registry.Delete(testContext, podA.Name, rest.ValidateAllObjectFunc, options)
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if !wasDeleted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	HandlePodRemoves(pods []*v1.Pod)
    	HandlePodReconcile(pods []*v1.Pod)
    	HandlePodSyncs(pods []*v1.Pod)
    	HandlePodCleanups(ctx context.Context) error
    }
    
    // Option is a functional option type for Kubelet
    type Option func(*Kubelet)
    
    // Bootstrap is a bootstrapping interface for kubelet, targets the initialization protocol
    type Bootstrap interface {
    	GetConfiguration() kubeletconfiginternal.KubeletConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //		Valid values are 5, 6, 7.
    //		The value can be followed by an option specifying how to implement floating point instructions.
    //		Valid options are ,softfloat (default for 5) and ,hardfloat (default for 6 and 7).
    //	GOARM64
    //		For GOARCH=arm64, the ARM64 architecture for which to compile.
    //		Valid values are v8.0 (default), v8.{1-9}, v9.{0-5}.
    //		The value can be followed by an option specifying extensions implemented by target hardware.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. go.sum

    github.com/lestrrat-go/jwx v1.2.29/go.mod h1:hU8k2l6WF0ncx20uQdOmik/Gjg6E3/wIRtXSNFeZuB8=
    github.com/lestrrat-go/option v1.0.0/go.mod h1:5ZHFbivi4xwXxhxY9XHDe2FHo6/Z7WWmtT7T5nBBp3I=
    github.com/lestrrat-go/option v1.0.1 h1:oAzP2fvZGQKWkvHa1/SAcFolBEca1oN+mQ7eooNBEYU=
    github.com/lestrrat-go/option v1.0.1/go.mod h1:5ZHFbivi4xwXxhxY9XHDe2FHo6/Z7WWmtT7T5nBBp3I=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    # $2 is the firewall action (LOG or REJECT).
    # $3 is the prefix for log output.
    # $4 is "!" to optionally invert the uid range.
    function gce-metadata-fw-helper {
      local -r command="$1"
      local action="$2"
      local -r prefix="$3"
      local -r invert="${4:-}"
    
      # Expand rule action to include relevant option flags.
      case "${action}" in
        LOG)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    	var wg sync.WaitGroup
    	wg.Add(2 * len(pods))
    	bindings := make(map[string]string)
    	client.PrependReactor("create", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    		if action.GetSubresource() != "binding" {
    			return false, nil, nil
    		}
    		binding := action.(clienttesting.CreateAction).GetObject().(*v1.Binding)
    		bindings[binding.Name] = binding.Target.Name
    		wg.Done()
    		return true, binding, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    				return
    			}
    			event := evalActionFromLifecycle(ctx, *lc, rcfg, replcfg, objInfo)
    			if event.Action.Delete() {
    				// apply whatever the expiry rule is.
    				applyExpiryRule(event, lcEventSrc_s3GetObject, objInfo)
    				if !event.Action.DeleteRestored() {
    					// If the ILM action is not on restored object return error.
    					writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrNoSuchKey), r.URL)
    					return
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top