Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 933 for typeA (0.08 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      return std::equal(i1, e1, i2);
    }
    
    // This function removes explicit broadcasting on type1 and returns whether if
    // the reduced `type1` dimensions are the same as the ending dimensions
    // of `type2`.
    bool IsReducedTailOfShape(Type type1, Type type2) {
      auto tail_type = mlir::dyn_cast<ShapedType>(type1);
      auto full_type = mlir::dyn_cast<ShapedType>(type2);
      if (!tail_type || !full_type || !tail_type.hasRank() || !full_type.hasRank())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. docs/es/docs/python-types.md

    Todo **FastAPI** está basado en estos type hints, lo que le da muchas ventajas y beneficios.
    
    Pero, así nunca uses **FastAPI** te beneficiarás de aprender un poco sobre los type hints.
    
    !!! note "Nota"
        Si eres un experto en Python y ya lo sabes todo sobre los type hints, salta al siguiente capítulo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. docs/pt/docs/python-types.md

    <img src="/img/python-types/image03.png">
    
    ## Mais motivação
    
    Marque esta função, ela já possui type hints:
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial003.py!}
    ```
    
    Como o editor conhece os tipos de variáveis, você não apenas obtém a conclusão, mas também as verificações de erro:
    
    <img src="/img/python-types/image04.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	StartTime *metav1.Time `json:"startTime,omitempty" protobuf:"bytes,7,opt,name=startTime"`
    }
    
    type PodCondition struct {
    	// Type is the type of the condition.
    	// Currently only Ready.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
    	Type PodConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=PodConditionType"`
    	// Status is the status of the condition.
    	// Can be True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/apis/resource/types.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    	creater := &mockCreater{obj: &runtimetesting.MockCacheableObject{}}
    	typer := &mockTyper{gvk: &gvk}
    	serializer := json.NewSerializer(json.DefaultMetaFactory, creater, typer, false)
    
    	runtimetesting.CacheableObjectTest(t, serializer)
    }
    
    type mockCreater struct {
    	apiVersion string
    	kind       string
    	err        error
    	obj        runtime.Object
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    // necessary to perform the update for the indicated strategy.
    type StatefulSetUpdateStrategy struct {
    	// Type indicates the type of the StatefulSetUpdateStrategy.
    	// Default is RollingUpdate.
    	// +optional
    	Type StatefulSetUpdateStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=StatefulSetStrategyType"`
    	// RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    struct Types {
      typedef internal::Types$n<$for i, [[T$i]]> type;
    };
    
    template <>
    struct Types<$for i, [[internal::None]]> {
      typedef internal::Types0 type;
    };
    
    $range i 1..n-1
    $for i [[
    $range j 1..i
    $range k i+1..n
    template <$for j, [[typename T$j]]>
    struct Types<$for j, [[T$j]]$for k[[, internal::None]]> {
      typedef internal::Types$i<$for j, [[T$j]]> type;
    };
    
    ]]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top