Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 763 for typeOff (0.1 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    struct Types1 {
      typedef T1 Head;
      typedef Types0 Tail;
    };
    
    $range i 2..n
    
    $for i [[
    $range j 1..i
    $range k 2..i
    template <$for j, [[typename T$j]]>
    struct Types$i {
      typedef T1 Head;
      typedef Types$(i-1)<$for k, [[T$k]]> Tail;
    };
    
    
    ]]
    
    }  // namespace internal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/goboringcrypto.h

    	GO_NID_sha256 = 672,
    	GO_NID_sha384 = 673,
    	GO_NID_sha512 = 674,
    };
    
    // #include <openssl/sha.h>
    typedef struct GO_SHA_CTX { char data[96]; } GO_SHA_CTX;
    int _goboringcrypto_SHA1_Init(GO_SHA_CTX*);
    int _goboringcrypto_SHA1_Update(GO_SHA_CTX*, const void*, size_t);
    int _goboringcrypto_SHA1_Final(uint8_t*, GO_SHA_CTX*);
    
    typedef struct GO_SHA256_CTX { char data[48+64]; } GO_SHA256_CTX;
    int _goboringcrypto_SHA224_Init(GO_SHA256_CTX*);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    struct Types1 {
      typedef T1 Head;
      typedef Types0 Tail;
    };
    
    $range i 2..n
    
    $for i [[
    $range j 1..i
    $range k 2..i
    template <$for j, [[typename T$j]]>
    struct Types$i {
      typedef T1 Head;
      typedef Types$(i-1)<$for k, [[T$k]]> Tail;
    };
    
    
    ]]
    
    }  // namespace internal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/mutation/mock_test.go

    	if name == "nonExisting" {
    		return nil, false
    	}
    	return m.TypeRef.Field(name)
    }
    
    func (m *mockTypeResolverForOptional) Resolve(name string) (common.TypeRef, bool) {
    	r, ok := m.mockTypeResolver.Resolve(name)
    	if ok {
    		return &mockTypeRefForOptional{TypeRef: r}, ok
    	}
    	return nil, false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    	version(3.0)
    ]
    interface srvsvc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		[string] wchar_t *netname;
    	} ShareInfo0;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo0 *array;
    	} ShareInfoCtr0;
    
    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    	} ShareInfo1;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo1 *array;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. src/reflect/type_test.go

    		{"func(func(int, int))", reflect.TypeOf(func(func(int, int)) {}), false},
    		{"int64", reflect.TypeOf(int64(1)), false},
    		{"uint64", reflect.TypeOf(uint64(1)), false},
    		{"*[4]int", reflect.TypeOf(&[4]int{}), true},
    		{"chan int64", reflect.TypeOf(make(chan int64)), false},
    		{"map[int]int", reflect.TypeOf(make(map[int]int)), true},
    		{"string", reflect.TypeOf(""), true},
    		{"[]int", reflect.TypeOf([]int{}), true},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    	[op(0x07)]
    	int SamrOpenDomain([in] policy_handle *handle,
    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionsStorageTest.groovy

        def "favor exact same type over assignable"() {
            given:
            storage.add typeOf(Integer), 'int', 23
            storage.add typeOf(Number), 'num', 42
            storage.add new TypeOf<List<String>>() {}, 'stringList', ['string']
    
            expect:
            storage.findByType(typeOf(Number)) == 42
            storage.findByType(new TypeOf<List<String>>() {}) == ['string']
        }
    
        def "get schema"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. pkg/controlplane/import_known_versions_test.go

    	reflect.TypeOf(metav1.LabelSelector{}):        true,
    	reflect.TypeOf(metav1.GetOptions{}):           true,
    	reflect.TypeOf(metav1.ListOptions{}):          true,
    	reflect.TypeOf(metav1.DeleteOptions{}):        true,
    	reflect.TypeOf(metav1.GroupVersionKind{}):     true,
    	reflect.TypeOf(metav1.GroupVersionResource{}): true,
    	reflect.TypeOf(metav1.Status{}):               true,
    	reflect.TypeOf(metav1.Condition{}):            true,
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testgodefs/testdata/issue37479.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    package main
    
    /*
    typedef struct A A;
    
    typedef struct {
    	struct A *next;
    	struct A **prev;
    } N;
    
    struct A
    {
    	N n;
    };
    
    typedef struct B
    {
    	A* a;
    } B;
    */
    import "C"
    
    type N C.N
    
    type A C.A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 377 bytes
    - Viewed (0)
Back to top