Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for runtimeType (0.12 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. 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)
Back to top