Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for t1 (0.25 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      public <T extends NoInterface, T1 extends T, T2 extends T1>
          void testGetGenericInterfaces_typeVariable_boundIsTypeVariableAndClass() {
        assertThat(TypeToken.of(new TypeCapture<T2>() {}.capture()).getGenericInterfaces()).isEmpty();
        assertHasArrayInterfaces(new TypeToken<T2[]>() {});
      }
    
      public <T extends Iterable<T>, T1 extends T, T2 extends T1>
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      public <T extends NoInterface, T1 extends T, T2 extends T1>
          void testGetGenericInterfaces_typeVariable_boundIsTypeVariableAndClass() {
        assertThat(TypeToken.of(new TypeCapture<T2>() {}.capture()).getGenericInterfaces()).isEmpty();
        assertHasArrayInterfaces(new TypeToken<T2[]>() {});
      }
    
      public <T extends Iterable<T>, T1 extends T, T2 extends T1>
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    	_testListObjects(obj, instanceType, t1, true)
    }
    
    // Unit test for ListObjects.
    func testListObjects(obj ObjectLayer, instanceType string, t1 TestErrHandler) {
    	_testListObjects(obj, instanceType, t1, false)
    }
    
    func _testListObjects(obj ObjectLayer, instanceType string, t1 TestErrHandler, versioned bool) {
    	t, _ := t1.(*testing.T)
    	testBuckets := []string{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		}
    		c.ptrs[key] = append(c.ptrs[key], t)
    
    	case *dwarf.QualType:
    		t1 := c.Type(dt.Type, pos)
    		t.Size = t1.Size
    		t.Align = t1.Align
    		t.Go = t1.Go
    		if unionWithPointer[t1.Go] {
    			unionWithPointer[t.Go] = true
    		}
    		t.EnumValues = nil
    		t.Typedef = ""
    		t.C.Set("%s "+dt.Qual, t1.C)
    		return t
    
    	case *dwarf.StructType:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. src/archive/zip/reader_test.go

    				done <- true
    			}(j, ft)
    			n++
    		}
    	}
    	for ; n > 0; n-- {
    		<-done
    	}
    }
    
    func equalTimeAndZone(t1, t2 time.Time) bool {
    	name1, offset1 := t1.Zone()
    	name2, offset2 := t2.Zone()
    	return t1.Equal(t2) && name1 == name2 && offset1 == offset2
    }
    
    func readTestFile(t *testing.T, zt ZipTest, ft ZipTestFile, f *File, raw []byte) {
    	if f.Name != ft.Name {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  6. tests/migrate_test.go

    	} else {
    		for _, t1 := range []string{"users", "accounts", "pets", "companies", "toys", "languages", "tools"} {
    			hasTable := false
    			for _, t2 := range tables {
    				if t2 == t1 {
    					hasTable = true
    					break
    				}
    			}
    			if !hasTable {
    				t.Fatalf("Failed to get table %v when GetTables", t1)
    			}
    		}
    	}
    
    	for _, m := range allModels {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_test.cc

      TFE_TensorHandle* t1 = TestMatrixTensorHandle(ctx);
      TFE_TensorHandle* t2 = TestAxisTensorHandle(ctx);
      TFE_Op* assertOp = TFE_NewOp(ctx, "Assert", status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_OpAddInput(assertOp, condition, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_TensorHandle* data[] = {condition, t1, t2};
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
Back to top