Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,543 for constructs (0.23 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/modifyvolumestatus.go

    	Status                          *v1.PersistentVolumeClaimModifyVolumeStatus `json:"status,omitempty"`
    }
    
    // ModifyVolumeStatusApplyConfiguration constructs an declarative configuration of the ModifyVolumeStatus type for use with
    // apply.
    func ModifyVolumeStatus() *ModifyVolumeStatusApplyConfiguration {
    	return &ModifyVolumeStatusApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/tensor_spec.h

    // necessarily a problem. If it turns out later that we really need a name
    // attribute here, we can always add it back in; but let's see how far we can
    // get without it."
    class TensorSpec {
     public:
      // Constructs a scalar, DT_FLOAT TensorSpec
      TensorSpec();
    
      TensorSpec(PartialTensorShape shape, DataType dtype);
    
      explicit TensorSpec(const TensorSpecProto& proto);
    
      const PartialTensorShape& shape() const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/cc/ops/while_loop.h

    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
                                 std::vector<Output>* outputs)>
        BodyGraphBuilderFn;
    
    // Constructs a while loop.
    //
    // Arguments:
    // * scope: used to construct the while loop.
    // * inputs: the initial values of the loop variables. Must be non-empty.
    // * cond: a function that builds the condition graph of the loop. Takes the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

                                   detail::SideEffectAnalysisInfo> {
     public:
      // Constructs analysis by analyzing the given module operation. Because no
      // parallel_ids are given, the program has sequential memory semantics.
      explicit SideEffectAnalysis(ModuleOp module_op);
    
      // Constructs analysis by analyzing the given module operation where
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/webhook/serviceresolver.go

    type defaultServiceResolver struct{}
    
    // NewDefaultServiceResolver creates a new default server resolver.
    func NewDefaultServiceResolver() ServiceResolver {
    	return &defaultServiceResolver{}
    }
    
    // ResolveEndpoint constructs a service URL from a given namespace and name
    // note that the name, namespace, and port are required and by default all
    // created addresses use HTTPS scheme.
    // for example:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ArrayListMultimap.java

       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          ArrayListMultimap<K, V> create() {
        return new ArrayListMultimap<>();
      }
    
      /**
       * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold the specified
       * numbers of keys and values without resizing.
       *
       * <p>This method will soon be deprecated in favor of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/StandardNetwork.java

      // faster, but also make Networks consume 5 to 20+% (increasing with average degree) more memory.
      final MapIteratorCache<E, N> edgeToReferenceNode; // referenceNode == source if directed
    
      /** Constructs a graph with the properties specified in {@code builder}. */
      StandardNetwork(NetworkBuilder<? super N, ? super E> builder) {
        this(
            builder,
            builder.nodeOrder.<N, NetworkConnections<N, E>>createMap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/StandardNetwork.java

      // faster, but also make Networks consume 5 to 20+% (increasing with average degree) more memory.
      final MapIteratorCache<E, N> edgeToReferenceNode; // referenceNode == source if directed
    
      /** Constructs a graph with the properties specified in {@code builder}. */
      StandardNetwork(NetworkBuilder<? super N, ? super E> builder) {
        this(
            builder,
            builder.nodeOrder.<N, NetworkConnections<N, E>>createMap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcesubresources.go

    	Status *v1beta1.CustomResourceSubresourceStatus          `json:"status,omitempty"`
    	Scale  *CustomResourceSubresourceScaleApplyConfiguration `json:"scale,omitempty"`
    }
    
    // CustomResourceSubresourcesApplyConfiguration constructs an declarative configuration of the CustomResourceSubresources type for use with
    // apply.
    func CustomResourceSubresources() *CustomResourceSubresourcesApplyConfiguration {
    	return &CustomResourceSubresourcesApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/podfailurepolicyonpodconditionspattern.go

    	Type   *v1.PodConditionType `json:"type,omitempty"`
    	Status *v1.ConditionStatus  `json:"status,omitempty"`
    }
    
    // PodFailurePolicyOnPodConditionsPatternApplyConfiguration constructs an declarative configuration of the PodFailurePolicyOnPodConditionsPattern type for use with
    // apply.
    func PodFailurePolicyOnPodConditionsPattern() *PodFailurePolicyOnPodConditionsPatternApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 16:39:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top