Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 220 for measure (0.35 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    // PV subsystem. During that effort, it became clear that we needed to ensure
    // that every single condition was handled and accounted for in the code, even
    // if it resulted in no-op code branches.
    //
    // As a result, the controller code may seem overly verbose, commented, and
    // 'branchy'. However, a large amount of business knowledge and context is
    // recorded here in order to ensure that future maintainers can correctly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      }
    }
    ```
    
    This way, the first convolution with 3 feature dimension will be transformed
    to 12 feature dimension, which has better performance on TPU.
    ### `-tf-tpu-update-embedding-enqueue-op-inputs`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
    	// will be counted towards MaxUnavailable.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

    _CalibrationMethod = qc.CalibrationOptions.CalibrationMethod
    
    
    # Test cases for Static Range Quantization.
    # Tries to run all tests cases in both the graph mode (default in TF1) and the
    # eager mode (default in TF2) to ensure support for when TF2 is disabled.
    class StaticRangeQuantizationTest(quantize_model_test_base.QuantizedModelTest):
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'bias_fn': (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	"k8s.io/component-helpers/scheduling/corev1/nodeaffinity"
    	"k8s.io/dynamic-resource-allocation/resourceclaim"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	schedutil "k8s.io/kubernetes/pkg/scheduler/util"
    	"k8s.io/kubernetes/pkg/scheduler/util/assumecache"
    	"k8s.io/utils/ptr"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	if b.Do().Err() == nil {
    		t.Errorf("unexpected non-error")
    	}
    
    	// ensure we request a resource we know not to exist. This way, we
    	// end up taking the codepath we want to test in the resource builder
    	b.ResourceTypeOrNameArgs(true, "foo", "bar")
    
    	// ensure that receiving an error for any reason other than a non-existent resource is returned as-is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    		return apivalidation.ValidateImmutableField(spec.Completions, oldSpec.Completions, fldPath)
    	}
    
    	// Completions is immutable for non-indexed jobs.
    	// For Indexed Jobs, if ElasticIndexedJob feature gate is not enabled,
    	// fall back to validating that spec.Completions is always immutable.
    	isIndexedJob := spec.CompletionMode != nil && *spec.CompletionMode == batch.IndexedCompletion
    	if !isIndexedJob {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // as opaque by clients. Only equality comparison on the value is valid.
      // This is an alpha feature and may change or be removed in the future.
      // The field is populated by the apiserver only if the
      // StorageVersionHash feature gate is enabled.
      // This field will remain optional even if it graduates.
      // +optional
      optional string storageVersionHash = 10;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // as opaque by clients. Only equality comparison on the value is valid.
      // This is an alpha feature and may change or be removed in the future.
      // The field is populated by the apiserver only if the
      // StorageVersionHash feature gate is enabled.
      // This field will remain optional even if it graduates.
      // +optional
      optional string storageVersionHash = 10;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	utilversion "k8s.io/apimachinery/pkg/util/version"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/record"
    	ref "k8s.io/client-go/tools/reference"
    	"k8s.io/client-go/util/flowcontrol"
    	"k8s.io/component-base/logs/logreduction"
    	internalapi "k8s.io/cri-api/pkg/apis"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top