Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,599 for types0 (0.16 sec)

  1. pkg/kubelet/status/testing/mock_pod_status_provider.go

    }
    
    // GetUIDTranslations mocks base method.
    func (m *MockPodManager) GetUIDTranslations() (map[types0.ResolvedPodUID]types0.MirrorPodUID, map[types0.MirrorPodUID]types0.ResolvedPodUID) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetUIDTranslations")
    	ret0, _ := ret[0].(map[types0.ResolvedPodUID]types0.MirrorPodUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    class TypeParameterizedTest {
     public:
      // 'index' is the index of the test in the type list 'Types'
      // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase,
      // Types).  Valid values for 'index' are [0, N - 1] where N is the
      // length of Types.
      static bool Register(const char* prefix, const char* case_name,
                           const char* test_names, int index) {
        typedef typename Types::Head Type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    class TypeParameterizedTest {
     public:
      // 'index' is the index of the test in the type list 'Types'
      // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase,
      // Types).  Valid values for 'index' are [0, N - 1] where N is the
      // length of Types.
      static bool Register(const char* prefix, const char* case_name,
                           const char* test_names, int index) {
        typedef typename Types::Head Type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  4. src/runtime/type.go

    	return unsafe.Pointer(res)
    }
    
    type uncommontype = abi.UncommonType
    
    type interfacetype = abi.InterfaceType
    
    type maptype = abi.MapType
    
    type arraytype = abi.ArrayType
    
    type chantype = abi.ChanType
    
    type slicetype = abi.SliceType
    
    type functype = abi.FuncType
    
    type ptrtype = abi.PtrType
    
    type name = abi.Name
    
    type structtype = abi.StructType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/Types.java

            CURRENT = JAVA6;
          }
        }
    
        abstract Type newArrayType(Type componentType);
    
        abstract Type usedInGenericType(Type type);
    
        final ImmutableList<Type> usedInGenericType(Type[] types) {
          ImmutableList.Builder<Type> builder = ImmutableList.builder();
          for (Type type : types) {
            builder.add(usedInGenericType(type));
          }
          return builder.build();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeset.go

    // implied by the methods and the type set described by the terms and the
    // comparable bit. To test whether a type is included in a type set
    // ("implements" relation), the type must implement all methods _and_ be
    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/go/types/typeset.go

    // If the term list describes the set of all types and comparable is true,
    // only comparable types are meant; in all other cases comparable is false.
    type _TypeSet struct {
    	methods    []*Func  // all methods of the interface; sorted by unique ID
    	terms      termlist // type terms of the type set
    	comparable bool     // invariant: !comparable || terms.isAll()
    }
    
    // IsEmpty reports whether type set s is the empty set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types.go

    // mixing different types of rules in a single Ingress is disallowed, so exactly
    // one of the following must be set.
    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    	// aren't tied to Ingress. They can be used to route intra-cluster traffic.
    	// 2. Consider adding fields for ingress-type specific global options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    func bootstrapType(name string, e any) typeId {
    	rt := reflect.TypeOf(e).Elem()
    	_, present := types[rt]
    	if present {
    		panic("bootstrap type already present: " + name + ", " + rt.String())
    	}
    	typ := &CommonType{Name: name}
    	types[rt] = typ
    	setTypeId(typ)
    	return typ.id()
    }
    
    // Representation of the information we send and receive about this type.
    // Each value we send is preceded by its type definition: an encoded int.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// type is an OpenAPI type definition for this column.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
    	Type string `json:"type" protobuf:"bytes,2,opt,name=type"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top