Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for chtimes (0.11 sec)

  1. test/chan/powser1.go

    	return u.num == c.num && u.den == c.den
    }
    
    type dch struct {
    	req chan int
    	dat chan rat
    	nam int
    }
    
    type dch2 [2]*dch
    
    var chnames string
    var chnameserial int
    var seqno int
    
    func mkdch() *dch {
    	c := chnameserial % len(chnames)
    	chnameserial++
    	d := new(dch)
    	d.req = make(chan int)
    	d.dat = make(chan rat)
    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    			setter = func() { *ptr = *f }
    		case *string:
    			if len(field.choices) == 0 {
    				f := flag.String(n, *ptr, help)
    				setter = func() { *ptr = *f }
    			} else {
    				// Make a separate flag per possible choice.
    				// Set all flags to initially false so we can
    				// identify conflicts.
    				bools := make(map[string]*bool)
    				for _, choice := range field.choices {
    					bools[choice] = flag.Bool(choice, false, configHelp[choice])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. test/chan/powser2.go

    	return u.num == c1.num && u.den == c1.den
    }
    
    type dch struct {
    	req chan int
    	dat chan item
    	nam int
    }
    
    type dch2 [2]*dch
    
    var chnames string
    var chnameserial int
    var seqno int
    
    func mkdch() *dch {
    	c := chnameserial % len(chnames)
    	chnameserial++
    	d := new(dch)
    	d.req = make(chan int)
    	d.dat = make(chan item)
    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_MUNLOCK                = 204 // { int munlock(const void *addr, size_t len); }
    	SYS_UNDELETE               = 205 // { int undelete(char *path); }
    	SYS_FUTIMES                = 206 // { int futimes(int fd, struct timeval *tptr); }
    	SYS_GETPGID                = 207 // { int getpgid(pid_t pid); }
    	SYS_POLL                   = 209 // { int poll(struct pollfd *fds, u_int nfds, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_arm.go

    	SYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }
    	SYS_UNDELETE                 = 205 // { int undelete(char *path); }
    	SYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }
    	SYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }
    	SYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/inference.go

    func _() {
    	// related3 can be instantiated explicitly
    	related3[int, []int]()
    	related3[byte, List[byte]]()
    
    	// The 2nd type argument cannot be inferred from the first
    	// one because there's two possible choices: []Elem and
    	// List[Elem].
    	related3 /* ERROR "cannot infer Slice" */ [int]()
    }
    
    func wantsMethods[P interface {
    	m1(Q)
    	m2() R
    }, Q, R any](P) {
    }
    
    type hasMethods1 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"  Options:\n"
    
    	// Print help for configuration options after sorting them.
    	// Collect choices for multi-choice options print them together.
    	var variables []string
    	var radioStrings []string
    	for _, f := range configFields {
    		if len(f.choices) == 0 {
    			variables = append(variables, fmtHelp(prefix+f.name, configHelp[f.name]))
    			continue
    		}
    		// Format help for for this group.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/PrintEvents.java

              // Consume and discard the response body.
              body.source().readByteString();
            }
          }
        });
    
        Request newYorkTimesRequest = new Request.Builder()
            .url("https://www.nytimes.com/")
            .build();
        client.newCall(newYorkTimesRequest).enqueue(new Callback() {
          @Override public void onFailure(Call call, IOException e) {
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 16 23:20:49 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  9. LICENSES/vendor/github.com/NYTimes/gziphandler/LICENSE

    = vendor/github.com/NYTimes/gziphandler licensed under: =
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 03 21:57:36 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/go.mod

    	sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/NYTimes/gziphandler v1.1.1 // indirect
    	github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/blang/semver/v4 v4.0.0 // indirect
    	github.com/cenkalti/backoff/v4 v4.2.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top