Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for chtimes (0.23 sec)

  1. docs/features/events.md

        .url("https://www.nytimes.com/")
        .build();
    client.newCall(newYorkTimesRequest).enqueue(new Callback() {
      ...
    });
    ```
    
    Running this race over home WiFi shows the Times (`0002`) completes just slightly sooner than the Post (`0001`):
    
    ```
    0001 https://www.washingtonpost.com/
    0001 0.000 callStart
    0002 https://www.nytimes.com/
    0002 0.000 callStart
    0002 0.010 dnsStart
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	var args []string
    	current := currentConfig()
    	for _, f := range configFields {
    		n := f.name
    		v := current.get(f)
    		comment := ""
    		switch {
    		case len(f.choices) > 0:
    			values := append([]string{}, f.choices...)
    			sort.Strings(values)
    			comment = "[" + strings.Join(values, " | ") + "]"
    		case n == "sample_index":
    			st := sampleTypes(p)
    			if v == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_issue6480.txt

    # "go test -c" should also appear to write a new binary every time,
    # even if it's really just updating the mtime on an existing up-to-date binary.
    
    [compiler:gccgo] skip
    [short] skip
    
    # Install some commands to compare mtimes
    env GOBIN=$WORK/tmp/bin
    go install m/now m/mtime m/before
    
    # Initial builds
    go test -c -test.bench=XXX errors
    go test -c -o errors2.test errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     *
     * <p>The {@code Iterable} specification does not make it absolutely clear what should happen on a
     * second invocation, so implementors have made various choices, including:
     *
     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
     *   <li>or the usual, <i>robust</i> behavior, which all known {@link Collection} implementations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_bsd.go

    		NsecToTimeval(TimespecToNsec(ts[0])),
    		NsecToTimeval(TimespecToNsec(ts[1])),
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	futimes(fd int, timeval *[2]Timeval) (err error)
    
    func Futimes(fd int, tv []Timeval) (err error) {
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return futimes(fd, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cache/cache_test.go

    	checkTime(fmt.Sprintf("%x-a", id), mtime)
    	checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime)
    
    	// Get should not change recent mtimes.
    	now = start + 10
    	c.Get(id)
    	checkTime(fmt.Sprintf("%x-a", id), mtime)
    	checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime)
    
    	// Get should change distant mtimes.
    	now = start + 5000
    	mtime2 := now
    	if _, err := c.Get(id); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_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: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. src/net/http/status.go

    	case StatusMultiStatus:
    		return "Multi-Status"
    	case StatusAlreadyReported:
    		return "Already Reported"
    	case StatusIMUsed:
    		return "IM Used"
    	case StatusMultipleChoices:
    		return "Multiple Choices"
    	case StatusMovedPermanently:
    		return "Moved Permanently"
    	case StatusFound:
    		return "Found"
    	case StatusSeeOther:
    		return "See Other"
    	case StatusNotModified:
    		return "Not Modified"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_386.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)
  10. manifests/charts/UPDATING-CHARTS.md

    # Updating charts and values.yaml
    
    ## Acceptable Pull Requests
    
    Helm charts `values.yaml` represent a complex user facing API that tends to grow uncontrollably over time
    due to design choices in Helm.
    The underlying Kubernetes resources we configure have 1000s of fields; given enough users and bespoke use cases,
    eventually someone will want to customize every one of those fields.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top