Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for DIE (0.03 sec)

  1. src/os/os_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		if stat.ModTime() == info.ModTime() {
    			return nil
    		}
    		if err := Chtimes(path, stat.ModTime(), stat.ModTime()); err != nil {
    			t.Log(err) // We only log, not die, in case the test directory is not writable.
    		}
    		return nil
    	}); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestDirFS(t *testing.T) {
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    				return
    			}
    
    			rc.treq.cancel(errRequestDone)
    
    			// Now that they've read from the unbuffered channel, they're safely
    			// out of the select that also waits on this goroutine to die, so
    			// we're allowed to exit now if needed (if alive is false)
    			testHookReadLoopBeforeNextRead()
    			continue
    		}
    
    		waitForBodyRead := make(chan bool, 2)
    		body := &bodyEOFSignal{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		goIdent[name.Name] = name
    		if dt.ByteSize < 0 {
    			// Don't override old type
    			if _, ok := typedef[name.Name]; ok {
    				break
    			}
    
    			// Size calculation in c.Struct/c.Opaque will die with size=-1 (unknown),
    			// so execute the basic things that the struct case would do
    			// other than try to determine a Go representation.
    			tt := *t
    			tt.C = &TypeRepr{"%s %s", []interface{}{dt.Kind, tag}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top