Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for dispatch (0.28 sec)

  1. api/go1.1.txt

    pkg syscall (darwin-386), const EV_ADD = 1
    pkg syscall (darwin-386), const EV_CLEAR = 32
    pkg syscall (darwin-386), const EV_DELETE = 2
    pkg syscall (darwin-386), const EV_DISABLE = 8
    pkg syscall (darwin-386), const EV_DISPATCH = 128
    pkg syscall (darwin-386), const EV_ENABLE = 4
    pkg syscall (darwin-386), const EV_EOF = 32768
    pkg syscall (darwin-386), const EV_ERROR = 16384
    pkg syscall (darwin-386), const EV_FLAG0 = 4096
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EV_DISABLE = 8 #53466
    pkg syscall (freebsd-riscv64), const EV_DISABLE ideal-int #53466
    pkg syscall (freebsd-riscv64), const EV_DISPATCH = 128 #53466
    pkg syscall (freebsd-riscv64), const EV_DISPATCH ideal-int #53466
    pkg syscall (freebsd-riscv64), const EV_DROP = 4096 #53466
    pkg syscall (freebsd-riscv64), const EV_DROP ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/swig/swig_test.go

    }
    
    func run(t *testing.T, dir string, lto bool, args ...string) {
    	runArgs := append([]string{"run", "."}, args...)
    	cmd := exec.Command("go", runArgs...)
    	cmd.Dir = dir
    	if lto {
    		const cflags = "-flto -Wno-lto-type-mismatch -Wno-unknown-warning-option"
    		cmd.Env = append(cmd.Environ(),
    			"CGO_CFLAGS="+cflags,
    			"CGO_CXXFLAGS="+cflags,
    			"CGO_LDFLAGS="+cflags)
    	}
    	out, err := cmd.CombinedOutput()
    	if string(out) != "OK\n" {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/archive/zip/reader_test.go

    			rd, err := f.Open()
    			if err != nil {
    				t.Fatal(err)
    			}
    			defer rd.Close()
    
    			_, err = io.Copy(io.Discard, rd)
    			if err != ErrFormat {
    				t.Fatalf("Error mismatch\n\tGot:  %v\n\tWant: %v", err, ErrFormat)
    			}
    		})
    	}
    }
    
    func TestIssue54801(t *testing.T) {
    	for _, input := range []string{"testdata/readme.zip", "testdata/dd.zip"} {
    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)
  5. src/bufio/bufio_test.go

    		want = append(strconv.AppendInt(want, n, 10), ' ')
    		b = append(strconv.AppendInt(b, n, 10), ' ')
    		w.Write(b)
    	}
    	w.Flush()
    
    	if !bytes.Equal(got.Bytes(), want) {
    		t.Errorf("output mismatch:\ngot  %s\nwant %s", got.Bytes(), want)
    	}
    }
    
    // Check that write errors are returned properly.
    
    type errorWriterTest struct {
    	n, m   int
    	err    error
    	expect error
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const EV_DELETE ideal-int
    pkg syscall (darwin-arm64), const EV_DISABLE = 8
    pkg syscall (darwin-arm64), const EV_DISABLE ideal-int
    pkg syscall (darwin-arm64), const EV_DISPATCH = 128
    pkg syscall (darwin-arm64), const EV_DISPATCH ideal-int
    pkg syscall (darwin-arm64), const EV_ENABLE = 4
    pkg syscall (darwin-arm64), const EV_ENABLE ideal-int
    pkg syscall (darwin-arm64), const EV_EOF = 32768
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EV_DELETE ideal-int
    pkg syscall (freebsd-arm64), const EV_DISABLE = 8
    pkg syscall (freebsd-arm64), const EV_DISABLE ideal-int
    pkg syscall (freebsd-arm64), const EV_DISPATCH = 128
    pkg syscall (freebsd-arm64), const EV_DISPATCH ideal-int
    pkg syscall (freebsd-arm64), const EV_DROP = 4096
    pkg syscall (freebsd-arm64), const EV_DROP ideal-int
    pkg syscall (freebsd-arm64), const EV_ENABLE = 4
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. src/cmd/buildid/buildid.go

    	}
    
    	newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash)
    	if len(newID) != len(id) {
    		log.Fatalf("%s: build ID length mismatch %q vs %q", file, id, newID)
    	}
    
    	if len(matches) == 0 {
    		return
    	}
    
    	f, err = os.OpenFile(file, os.O_RDWR, 0)
    	if err != nil {
    		log.Fatal(err)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 06 14:30:53 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (darwin-386), const EV_CLEAR ideal-int
    pkg syscall (darwin-386), const EV_DELETE ideal-int
    pkg syscall (darwin-386), const EV_DISABLE ideal-int
    pkg syscall (darwin-386), const EV_DISPATCH ideal-int
    pkg syscall (darwin-386), const EV_ENABLE ideal-int
    pkg syscall (darwin-386), const EV_EOF ideal-int
    pkg syscall (darwin-386), const EV_ERROR ideal-int
    pkg syscall (darwin-386), const EV_FLAG0 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. src/cmd/cgo/gcc.go

    		arg, nu := p.mangle(f, &args[i], true)
    		if nu {
    			needsUnsafe = true
    		}
    
    		// Use "var x T = ..." syntax to explicitly convert untyped
    		// constants to the parameter type, to avoid a type mismatch.
    		ptype := p.rewriteUnsafe(param.Go)
    
    		if !p.needsPointerCheck(f, param.Go, args[i]) || param.BadPointer || p.checkUnsafeStringData(args[i]) {
    			if ptype != param.Go {
    				needsUnsafe = true
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top