Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for test_error (0.24 sec)

  1. guava-tests/test/com/google/common/io/CloserTest.java

        assertTrue(c2.isClosed());
    
        assertSuppressed(
            new Suppression(c2, tryException, c2Exception),
            new Suppression(c1, tryException, c1Exception));
      }
    
      public void testErrors() throws IOException {
        Closer closer = new Closer(suppressor);
    
        Error c1Exception = new Error();
        Error c2Exception = new Error();
        Error c3Exception = new Error();
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Mar 06 15:15:46 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/archive/tar/writer_test.go

    						t.Fatalf("test %d, Write() = (%d, %v), want (%d, %v)", i, got, err, tf.wantCnt, tf.wantErr)
    					}
    				case testReadFrom:
    					f := &testFile{ops: tf.ops}
    					got, err := tw.readFrom(f)
    					if _, ok := err.(testError); ok {
    						t.Errorf("test %d, ReadFrom(): %v", i, err)
    					} else if got != tf.wantCnt || !equalError(err, tf.wantErr) {
    						t.Errorf("test %d, ReadFrom() = (%d, %v), want (%d, %v)", i, got, err, tf.wantCnt, tf.wantErr)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
  3. src/archive/tar/reader_test.go

    				}
    			case testWriteTo:
    				f := &testFile{ops: tf.ops}
    				got, err := fr.WriteTo(f)
    				if _, ok := err.(testError); ok {
    					t.Errorf("test %d.%d, WriteTo(): %v", i, j, err)
    				} else if got != tf.wantCnt || err != tf.wantErr {
    					t.Errorf("test %d.%d, WriteTo() = (%d, %v), want (%d, %v)", i, j, got, err, tf.wantCnt, tf.wantErr)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (linux-386), type Timex struct, Calcnt int32
    pkg syscall (linux-386), type Timex struct, Constant int32
    pkg syscall (linux-386), type Timex struct, Errcnt int32
    pkg syscall (linux-386), type Timex struct, Esterror int32
    pkg syscall (linux-386), type Timex struct, Freq int32
    pkg syscall (linux-386), type Timex struct, Jitcnt int32
    pkg syscall (linux-386), type Timex struct, Jitter int32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Timex struct, Constant int32
    pkg syscall (linux-arm-cgo), type Timex struct, Errcnt int32
    pkg syscall (linux-arm-cgo), type Timex struct, Esterror int32
    pkg syscall (linux-arm-cgo), type Timex struct, Freq int32
    pkg syscall (linux-arm-cgo), type Timex struct, Jitcnt int32
    pkg syscall (linux-arm-cgo), type Timex struct, Jitter int32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top