Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for natures (0.24 sec)

  1. docs/en/docs/release-notes.md

    ## 0.75.0
    
    ### Features
    
    * ✨ Add support for custom `generate_unique_id_function` and docs for generating clients. New docs: [Advanced - Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/). PR [#4650](https://github.com/tiangolo/fastapi/pull/4650) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.74.1
    
    ### Features
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME: (%[[GRADIENTS:.*]]: tensor<4x8xf32>, %[[FEATURES:.*]]: tensor<?x?xf32>)
    func.func @elu_grad(%gradients: tensor<4x8xf32>, %features: tensor<?x?xf32>) -> tensor<4x8xf32> {
      // CHECK-DAG: %[[ZERO:.*]] = mhlo.constant dense<0.000000e+00> : tensor<f32>
      // CHECK-DAG: %[[ONE:.*]] = mhlo.constant dense<1.000000e+00> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. ChangeLog.md

    ## 2.0.0
    
    ### Analysis. API
    
    #### New Features
    
    - [`KT-65327`](https://youtrack.jetbrains.com/issue/KT-65327) Support reading klib contents in Analysis API
    
    #### Performance Improvements
    
    - [`KT-65560`](https://youtrack.jetbrains.com/issue/KT-65560) K2: Anaysis API: ContextCollector triggers redundant resolution in the case of file elements
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value gradients = op.getGradients();
        Value features = op.getFeatures();
        auto featureType = features.getType();
    
        // Use ConstantLike for `alpha` to match the shape of feature.
        auto alphaVal = chlo::getConstantLike(
            rewriter, loc, op.getAlpha().convertToFloat(), features);
        Value zeroVal = chlo::getConstantLike(rewriter, loc, 0.0, features);
    
        Value leakyGradientVal =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	opts := PersistentVolumeClaimSpecValidationOptions{
    		EnableRecoverFromExpansionFailure: utilfeature.DefaultFeatureGate.Enabled(features.RecoverVolumeExpansionFailure),
    		AllowInvalidLabelValueInSelector:  false,
    		EnableVolumeAttributesClass:       utilfeature.DefaultFeatureGate.Enabled(features.VolumeAttributesClass),
    	}
    	if oldPvc == nil {
    		// If there's no old PVC, use the options based solely on feature enablement
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    type NodeRuntimeHandler struct {
    	// Runtime handler name.
    	// Empty for the default runtime handler.
    	// +optional
    	Name string
    	// Supported features.
    	// +optional
    	Features *NodeRuntimeHandlerFeatures
    }
    
    // NodeSystemInfo is a set of ids/uuids to uniquely identify the node.
    type NodeSystemInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"name":     "Runtime handler name. Empty for the default runtime handler.",
    	"features": "Supported features.",
    }
    
    func (NodeRuntimeHandler) SwaggerDoc() map[string]string {
    	return map_NodeRuntimeHandler
    }
    
    var map_NodeRuntimeHandlerFeatures = map[string]string{
    	"":                        "NodeRuntimeHandlerFeatures is a set of runtime features.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Runtime handler name.
    	// Empty for the default runtime handler.
    	// +optional
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// Supported features.
    	// +optional
    	Features *NodeRuntimeHandlerFeatures `json:"features,omitempty" protobuf:"bytes,2,opt,name=features"`
    }
    
    // NodeSystemInfo is a set of ids/uuids to uniquely identify the node.
    type NodeSystemInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // Runtime handler name.
      // Empty for the default runtime handler.
      // +optional
      optional string name = 1;
    
      // Supported features.
      // +optional
      optional NodeRuntimeHandlerFeatures features = 2;
    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    message NodeRuntimeHandlerFeatures {
      // RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	klogtesting "k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/proxy"
    	kubeproxyconfig "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/conntrack"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    	"k8s.io/kubernetes/pkg/proxy/metrics"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top