Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,255 for typeA (0.08 sec)

  1. 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)
  2. 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)
  3. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/type/type/AbstractSignatureTypeProviderSpec.groovy

            provider.hasTypeForExtension(type2.extension)
            !provider.hasTypeForExtension(type3.extension)
        }
    
        def "default type"() {
            expect:
            provider.defaultType == type1
    
            when:
            provider.defaultType = type2.extension
    
            then:
            provider.defaultType == type2
        }
    
        def "can't set default type to unregistered type"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/certificates/types.go

    type ExtraValue []string
    
    type CertificateSigningRequestStatus struct {
    	// Conditions applied to the request, such as approval or denial.
    	// +optional
    	Conditions []CertificateSigningRequestCondition
    
    	// If request was approved, the controller will place the issued certificate here.
    	// +optional
    	Certificate []byte
    }
    
    type RequestConditionType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            def cl = loader.parseClass("package ${Type1.package.name}; enum Type1 { TWO, THREE } ")
            assert cl != Type1
            assert cl.name == Type1.name
    
            expect:
            def isolated = isolatableFactory.isolate(Type1.TWO)
            isolated.coerce(Type1).is(Type1.TWO)
            isolated.coerce(Type2) == null
            isolated.coerce(String) == null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    }
    
    // PriorityLevelConfigurationCondition defines the condition of priority level.
    type PriorityLevelConfigurationCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    	Type PriorityLevelConfigurationConditionType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type"`
    	// `status` is the status of the condition.
    	// Can be True, False, Unknown.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top