Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 606 for typeOff (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile_test.go

    	switch nativeType {
    	case reflect.TypeOf(""):
    		return apiservercel.StringType
    	case reflect.TypeOf([]string{}):
    		return apiservercel.NewListType(apiservercel.StringType, -1)
    	case reflect.TypeOf(map[string]v1.ExtraValue{}):
    		return apiservercel.NewMapType(apiservercel.StringType, apiservercel.NewListType(apiservercel.StringType, -1), -1)
    	case reflect.TypeOf(&v1.ResourceAttributes{}):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		{TypeOf(float64(0)), ""},
    		{TypeOf(complex64(0)), ""},
    		{TypeOf(complex128(0)), ""},
    		{TypeOf(byte(0)), ""},
    		{TypeOf(rune(0)), ""},
    		{TypeOf([]byte(nil)), ""},
    		{TypeOf([]rune(nil)), ""},
    		{TypeOf(string("")), ""},
    		{TypeOf((*any)(nil)).Elem(), ""},
    		{TypeOf((*byte)(nil)), ""},
    		{TypeOf((*rune)(nil)), ""},
    		{TypeOf((*int64)(nil)), ""},
    		{TypeOf(map[string]int{}), ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetContainer.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.reflect.TypeOf;
    import org.gradle.api.tasks.SourceSet;
    import org.gradle.api.tasks.SourceSetContainer;
    import org.gradle.internal.reflect.Instantiator;
    
    import javax.inject.Inject;
    
    import static org.gradle.api.reflect.TypeOf.typeOf;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/DefaultConventionTest.groovy

    import org.gradle.api.plugins.Convention
    import org.gradle.api.reflect.HasPublicType
    import org.gradle.api.reflect.TypeOf
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.util.TestUtil
    import org.junit.Before
    import org.junit.Test
    
    import static org.gradle.api.reflect.TypeOf.typeOf
    import static org.hamcrest.CoreMatchers.equalTo
    import static org.junit.Assert.assertEquals
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/ops.h

        // START_SKIP_DOXYGEN
        template <typename T, bool = std::is_convertible<T, std::string>::value>
        struct RealType {
          typedef tstring type;
        };
    
        template <typename T>
        struct RealType<T, false> {
          typedef T type;
        };
        // END_SKIP_DOXYGEN
    
        TensorProto AsTensorProto() {
          TensorProto tensor_proto;
          if (tensor.NumElements() > 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/grappler/grappler.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // TF_TriState is the C API typedef for tri-state.
    typedef enum TF_TriState {
      TF_TriState_Default = 0,
      TF_TriState_Off,
      TF_TriState_On,
    } TF_TriState;
    
    // TF_GrapplerItem represents a combination of a graph, one of more fetch nodes,
    // and potentially a set of nodes to feed.
    typedef struct TF_GrapplerItem TF_GrapplerItem;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    var _self='undefined'==typeof window?'undefined'!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{}:window,Prism=function(){var a=/\blang(?:uage)?-([\w-]+)\b/i,b=0,c=_self.Prism={manual:_self.Prism&&_self.Prism.manual,disableWorkerMessageHandler:_self.Prism&&_self.Prism.disableWorkerMessageHandler,util:{encode:function(f){return f instanceof d?new d(f.type,c.util.encode(f.content),f.alias):'Array'===c.util.type(f)?f.map(c.util.encode):f.replace(/&/g,'&amp;').replace(/</g,'&l...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ProjectExtensionsTest.kt

                .thenReturn(convention)
            whenever(convention.findByType(any<TypeOf<*>>()))
                .thenReturn(null)
            whenever(convention.findPlugin(eq(CustomConvention::class.java)))
                .thenReturn(javaConvention)
    
            project.configure<CustomConvention> {}
    
            inOrder(convention) {
                verify(convention).findByType(any<TypeOf<CustomConvention>>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeAndAnnotations.kt

    private fun List<FirTypeRef>.mapToKtType(
        builder: KaSymbolByFirBuilder,
    ): List<KaType> = map { typeRef ->
        builder.typeBuilder.buildKtType(typeRef)
    }
    
    internal fun FirCallableSymbol<*>.returnType(builder: KaSymbolByFirBuilder): KaType =
        builder.typeBuilder.buildKtType(resolvedReturnType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    func (mr *MockManagerMockRecorder) IsUnderDiskPressure() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsUnderDiskPressure", reflect.TypeOf((*MockManager)(nil).IsUnderDiskPressure))
    }
    
    // IsUnderMemoryPressure mocks base method.
    func (m *MockManager) IsUnderMemoryPressure() bool {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "IsUnderMemoryPressure")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top