Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Option (0.12 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. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    project :impl
    \\--- compileClasspath
    """
        }
    
        def "selects a module component dependency with a given name with dependency command line option"() {
            given:
            mavenRepo.module("org", "leaf1").dependsOnModules("leaf2").publish()
            mavenRepo.module("org", "leaf2").dependsOnModules("leaf3").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework_test.go

    func withMetricsRecorder(recorder *metrics.MetricAsyncRecorder) Option {
    	return func(o *frameworkOptions) {
    		o.metricsRecorder = recorder
    	}
    }
    
    func TestRecordingMetrics(t *testing.T) {
    	state := &framework.CycleState{}
    	state.SetRecordPluginMetrics(true)
    
    	tests := []struct {
    		name               string
    		action             func(f framework.Framework)
    		inject             injectedResult
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/apps/validation/validation_test.go

    			tweakReplicas(3),
    			tweakOrdinalsStart(-2),
    		),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("spec", "ordinals.start"), nil, ""),
    		},
    	},
    	}
    
    	cmpOpts := []cmp.Option{cmpopts.IgnoreFields(field.Error{}, "BadValue", "Detail"), cmpopts.SortSlices(func(a, b *field.Error) bool { return a.Error() < b.Error() })}
    	for _, testCase := range append(successCases, errorCases...) {
    		name := testCase.name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
Back to top