Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 224 for experts (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    The API now creates temporary project files under the `Test` task's temporary directory. This path is usually under the project build directory.
    This may cause test failures when the test expects particular file paths.
    
    If the test uses `ProjectBuilder.withProjectDir(...)`, it is unaffected.
    
    ==== Location of temporary files for TestKit tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	if !n.Type().IsInterface() {
    		base.ErrorfAt(pos, 0, "internal/abi.FuncPC%s expects an interface value, got %v", wantABI, n.Type())
    	}
    
    	if fn := IsIfaceOfFunc(n); fn != nil {
    		name := fn.Nname
    		abi := fn.ABI
    		if abi != wantABI {
    			base.ErrorfAt(pos, 0, "internal/abi.FuncPC%s expects an %v function, %s is defined as %v", wantABI, wantABI, name.Sym().Name, abi)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Default to 30 seconds.
      // +optional
      optional int32 timeoutSeconds = 7;
    
      // AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
      // versions the Webhook expects. API server will try to use first version in
      // the list which it supports. If none of the versions specified in this list
      // supported by API server, validation will fail for this object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    	for _, fn := range ErrorHandlers {
    		fn(ctx, err, msg, keysAndValues...)
    	}
    }
    
    // logError prints an error with the call stack of the location it was reported.
    // It expects to be called as <caller> -> HandleError[WithContext] -> handleError -> logError.
    func logError(ctx context.Context, err error, msg string, keysAndValues ...interface{}) {
    	logger := klog.FromContext(ctx).WithCallDepth(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

            require(typeParameterSymbols.size == argumentTypes.size) {
                val renderedSymbol = FirRenderer.noAnnotationBodiesAccessorAndArguments().renderElementAsString(symbol.fir)
                "'$renderedSymbol' expects '${typeParameterSymbols.size}' type arguments " +
                        "but type '${this.renderForDebugging()}' has ${argumentTypes.size} type arguments."
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. cmd/erasure-metadata.go

    		NumVersions:      fi.NumVersions,
    		SuccessorModTime: fi.SuccessorModTime,
    		CacheControl:     fi.Metadata["cache-control"],
    	}
    
    	if exp, ok := fi.Metadata["expires"]; ok {
    		if t, err := amztime.ParseHeader(exp); err == nil {
    			objInfo.Expires = t.UTC()
    		}
    	}
    
    	// Extract etag from metadata.
    	objInfo.ETag = extractETag(fi.Metadata)
    
    	// Add user tags to the object info
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. tests/integration/ambient/waypoint_test.go

    				if !strings.Contains(output, name) {
    					t.Fatalf("expect to find %s in output: %s", name, output)
    				}
    			}
    
    			output, _ = istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"list",
    				"-A",
    			})
    			for _, name := range nameSet {
    				if !strings.Contains(output, name) {
    					t.Fatalf("expect to find %s in output: %s", name, output)
    				}
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    // Transforms the given module to be suitable for export to TensorFlow GraphDef
    // and then exports all functions to the given library.
    Status PrepareAndExportToLibrary(mlir::ModuleOp module,
                                     FunctionLibraryDefinition* flib_def) {
      // Pass pipeline is defined here instead of leveraging the phase one export
      // pipeline because only the functional to executor dialect conversion and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	switch verb {
    	default:
    		errorf("unknown directive: %s", verb)
    
    	case "go":
    		if f.Go != nil {
    			errorf("repeated go statement")
    			return
    		}
    		if len(args) != 1 {
    			errorf("go directive expects exactly one argument")
    			return
    		} else if !GoVersionRE.MatchString(args[0]) {
    			fixed := false
    			if !strict {
    				if m := laxGoVersionRE.FindStringSubmatch(args[0]); m != nil {
    					args[0] = m[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // Default to 10 seconds.
      // +optional
      optional int32 timeoutSeconds = 7;
    
      // AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
      // versions the Webhook expects. API server will try to use first version in
      // the list which it supports. If none of the versions specified in this list
      // supported by API server, validation will fail for this object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top