Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for runtimeType (0.23 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

        // bounds is a subtype of 'supertype'.
        if (runtimeType instanceof TypeVariable) {
          return runtimeType.equals(supertype)
              || any(((TypeVariable<?>) runtimeType).getBounds()).isSubtypeOf(supertype);
        }
        if (runtimeType instanceof GenericArrayType) {
          return of(supertype).isSupertypeOfArray((GenericArrayType) runtimeType);
        }
        // Proceed to regular Type subtype check
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

        // bounds is a subtype of 'supertype'.
        if (runtimeType instanceof TypeVariable) {
          return runtimeType.equals(supertype)
              || any(((TypeVariable<?>) runtimeType).getBounds()).isSubtypeOf(supertype);
        }
        if (runtimeType instanceof GenericArrayType) {
          return of(supertype).isSupertypeOfArray((GenericArrayType) runtimeType);
        }
        // Proceed to regular Type subtype check
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    			},
    			runtimeType: "RuntimeType",
    			runtimeVersion: &kubecontainertest.FakeVersion{
    				Version: "RuntimeVersion",
    			},
    			expectNode: &v1.Node{
    				Status: v1.NodeStatus{
    					NodeInfo: v1.NodeSystemInfo{
    						KernelVersion:           "KernelVersion",
    						OSImage:                 "ContainerOSVersion",
    						ContainerRuntimeVersion: "RuntimeType://RuntimeVersion",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/v1reflect.gox

     func (t <type 23 *<type 12>>) .reflect.uncommon () <type 23>;
     func (t <type 23>) PkgPath () <type -16>;
     func (t <type 23>) Name () <type -16>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/importer_test.go

    	{pkgpath: "nointerface", name: "I", want: "type I int"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. pkg/kubelet/container/testing/fake_runtime.go

    	StartedPods       []string
    	KilledPods        []string
    	StartedContainers []string
    	KilledContainers  []string
    	RuntimeStatus     *kubecontainer.RuntimeStatus
    	VersionInfo       string
    	APIVersionInfo    string
    	RuntimeType       string
    	Err               error
    	InspectErr        error
    	StatusErr         error
    	// If BlockImagePulls is true, then all PullImage() calls will be blocked until
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    func TestContainerRuntimeType(t *testing.T) {
    	_, _, m, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    	runtimeType := m.Type()
    	assert.Equal(t, apitest.FakeRuntimeName, runtimeType)
    }
    
    func TestGetPodStatus(t *testing.T) {
    	ctx := context.Background()
    	fakeRuntime, _, m, err := createTestRuntimeManager()
    	assert.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    			Conditions: []kubecontainer.RuntimeCondition{
    				{Type: "RuntimeReady", Status: true},
    				{Type: "NetworkReady", Status: true},
    			},
    		},
    		VersionInfo: "1.5.0",
    		RuntimeType: "test",
    		T:           t,
    	}
    
    	fakeRecorder := &record.FakeRecorder{}
    	fakeKubeClient := &fake.Clientset{}
    	kubelet := &Kubelet{}
    	kubelet.recorder = fakeRecorder
    	kubelet.kubeClient = fakeKubeClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

        private static final Type PROCESS_TYPE = getType(Process.class);
        private static final Type PROCESS_BUILDER_TYPE = getType(ProcessBuilder.class);
        private static final Type RUNTIME_TYPE = getType(Runtime.class);
        private static final Type PROCESS_GROOVY_METHODS_TYPE = getType(ProcessGroovyMethods.class);
        private static final Type STRING_ARRAY_TYPE = getType(String[].class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/syms.go

    // so that the compiler can generate calls to them,
    // but does not make them visible to user code.
    func InitRuntime() {
    	base.Timer.Start("fe", "loadsys")
    
    	typs := runtimeTypes()
    	for _, d := range &runtimeDecls {
    		sym := ir.Pkgs.Runtime.Lookup(d.name)
    		typ := typs[d.typ]
    		switch d.tag {
    		case funcTag:
    			importfunc(sym, typ)
    		case varTag:
    			importvar(sym, typ)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top