Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 607 for typeOff (0.13 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    }
    
    struct CustomQuantizationT : public ::flatbuffers::NativeTable {
      typedef CustomQuantization TableType;
      std::vector<uint8_t> custom{};
    };
    
    struct CustomQuantization FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table {
      typedef CustomQuantizationT NativeTableType;
      typedef CustomQuantizationBuilder Builder;
      enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/reflect/TypeOfSpec.groovy

            typeOf((Type) String) == new TypeOf<String>() {}
            parameterizedTypeOf(new TypeOf<List<?>>() {}, typeOf(String)) == new TypeOf<List<String>>() {}
            parameterizedTypeOf(new TypeOf<Map<?, ?>>() {}, typeOf(String), typeOf(Integer)) == new TypeOf<Map<String, Integer>>() {}
        }
    
        def "componentType is null on non-array types"() {
            expect:
            typeOf(String).componentType == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:51:08 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/fix/typecheck.go

    			switch n.Op {
    			case token.EQL, token.NEQ: // TODO: more cases. This is enough for the cftype fix.
    				if typeof[n.X] != "" && typeof[n.Y] == "" {
    					typeof[n.Y] = typeof[n.X]
    				}
    				if typeof[n.X] == "" && typeof[n.Y] != "" {
    					typeof[n.X] = typeof[n.Y]
    				}
    			}
    		}
    	}
    	walkBeforeAfter(f, before, after)
    }
    
    // Convert between function type strings and lists of types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

     * Licensed MIT © Zeno Rocha
     */
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental.h

    TF_CAPI_EXPORT extern uint64_t TFE_GetContextId(TFE_Context* ctx);
    
    // -----------------------------------------------------------------------------
    // Cancellation APIs.
    
    typedef struct TFE_CancellationManager TFE_CancellationManager;
    typedef int64_t TFE_CancellationToken;
    typedef struct TFE_CancelCallback {
      void (*callback)(void* context);
      void* context;
    } TFE_CancelCallback;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensionsTest.kt

            val extensions = mock<ExtensionContainer>()
            doNothing().`when`(extensions).add(any<TypeOf<SomeExtension<*>>>(), any(), any())
    
            val instance = SomeExtension("some")
            extensions.add<SomeExtension<String>>("name", instance)
    
            inOrder(extensions) {
                verify(extensions).add(typeOf<SomeExtension<String>>(), "name", instance)
                verifyNoMoreInteractions()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/testdata/exe/exe.go

    	// exercising https://golang.org/issues/17594
    	reflect.TypeOf(os.Stdout).Elem()
    	runtime.GC()
    	depBase.V = depBase.F() + 1
    
    	var c *C
    	if reflect.TypeOf(F).Out(0) != reflect.TypeOf(c) {
    		panic("bad reflection results, see golang.org/issue/18252")
    	}
    
    	sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
    	s := sp.Interface()
    
    	if reflect.TypeOf(s) != reflect.TypeOf(slicePtr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 906 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TypeOfExtensions.kt

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.reflect.TypeOf
    
    
    /**
     * Creates an instance of [TypeOf] for the given parameterized type.
     *
     * @param T the type
     * @return the [TypeOf] that captures the generic type of the given parameterized type
     */
    inline fun <reified T> typeOf(): TypeOf<T> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 947 bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    template <typename T>
    class FooTest : public testing::Test {
     public:
      ...
      typedef std::list<T> List;
      static T shared_;
      T value_;
    };
    
    // Next, associate a list of types with the test case, which will be
    // repeated for each type in the list.  The typedef is necessary for
    // the macro to parse correctly.
    typedef testing::Types<char, int, unsigned int> MyTypes;
    TYPED_TEST_CASE(FooTest, MyTypes);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/interface.go

    	// This function returns false if the name does not refer to a known object type.
    	Resolve(name string) (TypeRef, bool)
    }
    
    // TypeRef refers an object type that can be looked up for its fields.
    type TypeRef interface {
    	ref.Type
    
    	// CELType wraps the TypeRef to be a type that is understood by CEL.
    	CELType() *types.Type
    
    	// Field finds the field by the field name, or false if the field is not known.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top