Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 645 for earliest (0.35 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    	// - both characters of a pair occur in the same isolating run sequence
    	// - the closing character of a pair follows the opening character
    	// - any bracket character can belong at most to one pair, the earliest possible one
    	// - any bracket character not part of a pair is treated like an ordinary character
    	// - pairs may nest properly, but their spans may not overlap otherwise
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/fuse.go

    func fuseBlockPlain(b *Block) bool {
    	if b.Kind != BlockPlain {
    		return false
    	}
    
    	c := b.Succs[0].b
    	if len(c.Preds) != 1 || c == b { // At least 2 distinct blocks.
    		return false
    	}
    
    	// find earliest block in run.  Avoid simple cycles.
    	for len(b.Preds) == 1 && b.Preds[0].b != c && b.Preds[0].b.Kind == BlockPlain {
    		b = b.Preds[0].b
    	}
    
    	// find latest block in run.  Still beware of simple cycles.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils.go

    	var mostRecentTime time.Time
    	// to get the most recent time accurate for regular schedules and the ones
    	// specified with @every form, we first need to calculate the potential earliest
    	// time by multiplying the initial number of missed schedules by its interval,
    	// this is critical to ensure @every starts at the correct time, this explains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

              tensor.first_use() >= begin && tensor.first_use() < end &&
              tensor.last_use() > peak_loc) {
            for (const int ioperation : tensor.operations) {
              // We return the earliest dependence on any output tensor.
              if (ioperation > peak_loc && ioperation < best) {
                best = ioperation;
                break;
              }
            }
          }
        }
      }
      return best;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

        long momentAvailable = reserveEarliestAvailable(permits, nowMicros);
        return max(momentAvailable - nowMicros, 0);
      }
    
      /**
       * Returns the earliest time that permits are available (with one caveat).
       *
       * @return the time that permits are available, or, if permits are available immediately, an
       *     arbitrary past or present time
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	//
    	// This setting must not differ among concurrent type-checking operations,
    	// since it affects the behavior of Universe.Lookup("any").
    	//
    	// This flag will eventually be removed (with Go 1.24 at the earliest).
    	EnableAlias bool
    }
    
    func srcimporter_setUsesCgo(conf *Config) {
    	conf.go115UsesCgo = true
    }
    
    // Info holds result type information for a type-checked package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	if modified {
    		if len(submap) == 0 {
    			delete(j.entries, key)
    		} else {
    			j.entries[key] = submap
    		}
    	}
    
    	// sort according to RFC 6265 section 5.4 point 2: by longest
    	// path and then by earliest creation time.
    	slices.SortFunc(selected, func(a, b entry) int {
    		if r := cmp.Compare(b.Path, a.Path); r != 0 {
    			return r
    		}
    		if r := a.Creation.Compare(b.Creation); r != 0 {
    			return r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    // functions and mappings. Profiles must have identical profile sample
    // and period types or the merge will fail. profile.Period of the
    // resulting profile will be the maximum of all profiles, and
    // profile.TimeNanos will be the earliest nonzero one. Merges are
    // associative with the caveat of the first profile having some
    // specialization in how headers are combined. There may be other
    // subtleties now or in the future regarding associativity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. src/math/big/rat.go

    // of Rats are not supported and may lead to errors.
    type Rat struct {
    	// To make zero values for Rat work w/o initialization,
    	// a zero value of b (len(b) == 0) acts like b == 1. At
    	// the earliest opportunity (when an assignment to the Rat
    	// is made), such uninitialized denominators are set to 1.
    	// a.neg determines the sign of the Rat, b.neg is ignored.
    	a, b Int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/go/types/api.go

    	//
    	// This setting must not differ among concurrent type-checking operations,
    	// since it affects the behavior of Universe.Lookup("any").
    	//
    	// This flag will eventually be removed (with Go 1.24 at the earliest).
    	_EnableAlias bool
    }
    
    // Linkname for use from srcimporter.
    //go:linkname srcimporter_setUsesCgo
    
    func srcimporter_setUsesCgo(conf *Config) {
    	conf.go115UsesCgo = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top