Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for ToOpts (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    }
    
    // suppressExpressionCostForUnchangedSchema returns a copy of opts with suppressPerExpressionCost set to true if
    // the specified version's schema is unchanged.
    func suppressExpressionCostForUnchangedSchema(opts validationOptions, version string) validationOptions {
    	if opts.versionsWithUnchangedSchemas.Has(version) {
    		opts.suppressPerExpressionCost = true
    	}
    	return opts
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	if opts.gcflags != "" {
    		build = append(build, "-gcflags=all="+opts.gcflags)
    	}
    	if opts.ldflags != "" {
    		build = append(build, "-ldflags="+opts.ldflags)
    	}
    	if opts.buildmode != "" {
    		build = append(build, "-buildmode="+opts.buildmode)
    	}
    
    	pkgs = opts.packages()
    
    	runOnHost := opts.runOnHost && (goarch != gohostarch || goos != gohostos)
    	needTestFlags := len(opts.testFlags) > 0 || runOnHost
    	if needTestFlags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    			}
    			SupportsHBone := func(from echo.Instance, opts echo.CallOptions) bool {
    				if !from.Config().IsUncaptured() && !opts.To.Config().IsUncaptured() {
    					return true
    				}
    				if !from.Config().IsUncaptured() && opts.To.Config().HasSidecar() {
    					return true
    				}
    				if from.Config().HasSidecar() && !opts.To.Config().IsUncaptured() {
    					return true
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    func testObjectNewMultipartUpload(obj ObjectLayer, instanceType string, t TestErrHandler) {
    	bucket := "minio-bucket"
    	object := "minio-object"
    	opts := ObjectOptions{}
    	_, err := obj.NewMultipartUpload(context.Background(), "--", object, opts)
    	if err == nil {
    		t.Fatalf("%s: Expected to fail since bucket name is invalid.", instanceType)
    	}
    
    	errMsg := "Bucket not found: minio-bucket"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			list := &example.PodList{}
    			opts := storage.ListOptions{
    				ResourceVersion: "",
    				Predicate:       predicate,
    				Recursive:       true,
    			}
    			if err := store.GetList(ctx, "/pods", opts, list); err != nil {
    				t.Errorf("Unexpected error: %v", err)
    			}
    
    			opts.ResourceVersion = list.ResourceVersion
    			opts.Recursive = tt.recursive
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		WorkingDir:  container.WorkingDir,
    		Labels:      newContainerLabels(container, pod),
    		Annotations: newContainerAnnotations(container, pod, restartCount, opts),
    		Devices:     makeDevices(opts),
    		CDIDevices:  makeCDIDevices(opts),
    		Mounts:      m.makeMounts(opts, container),
    		LogPath:     containerLogsPath,
    		Stdin:       container.Stdin,
    		StdinOnce:   container.StdinOnce,
    		Tty:         container.TTY,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        op_state.addAttribute("comparator", comparator_attr);
    
        return absl::OkStatus();
      }
      if (auto* opts = op.builtin_options_2.AsStablehloWhileOptions()) {
        int32_t body_idx = opts->body_subgraph_index;
        int32_t cond_idx = opts->cond_subgraph_index;
        if (body_idx >= func_names.size()) {
          return absl::AbortedError("subgraph with index not found: " +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. cmd/iam.go

    	}
    	if len(opts.secretKey) > 0 && len(opts.accessKey) == 0 {
    		return auth.Credentials{}, time.Time{}, auth.ErrNoAccessKeyWithSecretKey
    	}
    
    	var policyBuf []byte
    	if opts.sessionPolicy != nil {
    		err := opts.sessionPolicy.Validate()
    		if err != nil {
    			return auth.Credentials{}, time.Time{}, err
    		}
    		policyBuf, err = json.Marshal(opts.sessionPolicy)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    		}
    
    		if !globalTierConfigMgr.Empty() {
    			oss[index] = newObjSweeper(bucket, object.ObjectName).WithVersion(opts.VersionID).WithVersioning(opts.Versioned, opts.VersionSuspended)
    			oss[index].SetTransitionState(goi.TransitionedObject)
    		}
    
    		// All deletes on directory objects needs to be for `nullVersionID`
    		if isDirObject(object.ObjectName) && object.VersionID == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top