Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for human (0.04 sec)

  1. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// reason is the reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    
    	// message is a human-readable explanation containing details about
    	// the transition
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    }
    
    // Covered returns a string describing which packages are being tested for coverage.
    // If the covered package is the same as the tested package, it returns the empty string.
    // Otherwise it is a comma-separated human-readable list of packages beginning with
    // " in", ready for use in the coverage message.
    func (t *testFuncs) Covered() string {
    	if t.Cover == nil || t.Cover.Paths == nil {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/go/types/infer.go

    	}
    
    	return tparams2, check.subst(pos, typ, renameMap, nil, check.context())
    }
    
    // typeParamsString produces a string containing all the type parameter names
    // in list suitable for human consumption.
    func typeParamsString(list []*TypeParam) string {
    	// common cases
    	n := len(list)
    	switch n {
    	case 0:
    		return ""
    	case 1:
    		return list[0].obj.name
    	case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"lastTransitionTime": "Last time the condition transit from one status to another.",
    	"reason":             "(brief) reason for the condition's last transition.",
    	"message":            "Human readable message indicating details about last transition.",
    }
    
    func (JobCondition) SwaggerDoc() map[string]string {
    	return map_JobCondition
    }
    
    var map_JobList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // the offset is calculated relative to the beginning of the file and is only
      // valid if > 1.
      offset: ulong;
      size: ulong;
    }
    
    table Metadata {
      // A human readable string to uniquely identify a Metadata.
      name:string;
      // An index to the buffers table.
      buffer:uint;
    }
    
    // Map from an alias name of tensor to tensor index in the graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    One example is a task that only moves data around the file system, like a `Copy` task.
    You can signify that a task is not to be cached by adding the `@DisableCachingByDefault` annotation to it.
    You can also give a human-readable reason for not caching the task by default.
    The annotation can be used on its own, or together with `@CacheableTask`.
    
    NOTE: This annotation is only for documenting the reason behind not caching the task by default.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// reason is the reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    
    	// message is a human-readable explanation containing details about
    	// the transition
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector.go

    		// have succeeded to ensure we'll retry on subsequent syncs if an error
    		// occurred.
    		oldResources = newResources
    		logger.V(2).Info("synced garbage collector")
    	}, period)
    }
    
    // printDiff returns a human-readable summary of what resources were added and removed
    func printDiff(oldResources, newResources map[schema.GroupVersionResource]struct{}) string {
    	removed := sets.NewString()
    	for oldResource := range oldResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // For example, the reference to the expression of the first item of
      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // The content of type checking information in a human-readable form.
      // Each line of the warning contains the type that the expression is checked
      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    message MatchCondition {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/infer.go

    	}
    
    	return tparams2, check.subst(pos, typ, renameMap, nil, check.context())
    }
    
    // typeParamsString produces a string containing all the type parameter names
    // in list suitable for human consumption.
    func typeParamsString(list []*TypeParam) string {
    	// common cases
    	n := len(list)
    	switch n {
    	case 0:
    		return ""
    	case 1:
    		return list[0].obj.name
    	case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top