Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for stabilize (0.17 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    			return c > 0 // smaller args come later
    		}
    	}
    	if c := x.Uses - y.Uses; c != 0 {
    		return c > 0 // smaller uses come later
    	}
    	// These comparisons are fairly arbitrary.
    	// The goal here is stability in the face
    	// of unrelated changes elsewhere in the compiler.
    	if c := x.AuxInt - y.AuxInt; c != 0 {
    		return c < 0
    	}
    	if cmp := x.Type.Compare(y.Type); cmp != types.CMPeq {
    		return cmp == types.CMPlt
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. cluster/gce/config-default.sh

    # Optional: Enable Metrics Server. Metrics Server should be enable everywhere,
    # since it's a critical component, but in the first release we need a way to disable
    # this in case of stability issues.
    # TODO(piosz) remove this option once Metrics Server became a stable thing.
    export ENABLE_METRICS_SERVER="${KUBE_ENABLE_METRICS_SERVER:-true}"
    
    # Optional: Metadata agent to setup as part of the cluster bring up:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    	DeprecationWarning *string
    	// Schema describes the schema for CustomResource used in validation, pruning, and defaulting.
    	// Top-level and per-version schemas are mutually exclusive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    # Optional: Enable Metrics Server. Metrics Server should be enable everywhere,
    # since it's a critical component, but in the first release we need a way to disable
    # this in case of stability issues.
    # TODO(piosz) remove this option once Metrics Server became a stable thing.
    export ENABLE_METRICS_SERVER=${KUBE_ENABLE_METRICS_SERVER:-true}
    
    # Optional: Metadata agent to setup as part of the cluster bring up:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

             "resource-type input.");
      bool change = false;
      // Copy ID set because function `AddValueUniqueIDMapping` below is not
      // guaranteed to preserve pointer stability (see b/243813657).
      const llvm::SmallSet<int64_t, 8> id_set = operand_it->second;
      assert(operand != result);
      for (int64_t id : id_set)
        change = AddValueUniqueIDMapping(result, id) || change;
      return change;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/generated.proto

    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    message ControllerRevision {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    message ControllerRevision {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    					{Name: "v3beta2", Served: false},
    				},
    			},
    			want: "example.com/v1 Widget is deprecated; use example.com/v2 Widget",
    		},
    		{
    			name:              "no newer replacement of equal stability",
    			deprecatedVersion: "v2",
    			crd: apiextensionsv1.CustomResourceDefinitionSpec{
    				Group: "example.com",
    				Names: apiextensionsv1.CustomResourceDefinitionNames{Kind: "Widget"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	for gvk := range s.gvkToType {
    		if gk != gvk.GroupKind() {
    			continue
    		}
    
    		availableVersions = append(availableVersions, gvk.GroupVersion())
    	}
    
    	// order the return for stability
    	ret := []schema.GroupVersion{}
    	for _, version := range s.PrioritizedVersionsForGroup(gk.Group) {
    		for _, availableVersion := range availableVersions {
    			if version != availableVersion {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
Back to top