Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,426 for ahead (0.05 sec)

  1. pkg/scheduler/schedule_one.go

    		// particular nodes, and this may eventually improve preemption efficiency.
    		// Note: users are recommended to configure the extenders that may return UnschedulableAndUnresolvable
    		// status ahead of others.
    		feasibleList, failedMap, failedAndUnresolvableMap, err := extender.Filter(pod, feasibleNodes)
    		if err != nil {
    			if extender.IsIgnorable() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    	pkg.mod, modroot, pkg.dir, pkg.altMods, pkg.err = importFromModules(ctx, pkg.path, ld.requirements, mg, ld.skipImportModFiles)
    	if pkg.dir == "" {
    		return
    	}
    	if MainModules.Contains(pkg.mod.Path) {
    		// Go ahead and mark pkg as in "all". This provides the invariant that a
    		// package that is *only* imported by other packages in "all" is always
    		// marked as such before loading its imports.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/math/big/natdiv.go

    	                            [    rem    |u₀]
    	                          - [     q₀·v     ]
    	                          ------------------
    	                               [    rem    ]
    
    An alternative would be to look ahead to how well n/2 divides into n+m and
    adjust the first step to use fewer digits as needed, making the first step
    more special to make the last step not special at all. For example, using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    // slice of PC values returned by [Callers].
    type Frames struct {
    	// callers is a slice of PCs that have not yet been expanded to frames.
    	callers []uintptr
    
    	// nextPC is a next PC to expand ahead of processing callers.
    	nextPC uintptr
    
    	// frames is a slice of Frames that have yet to be returned.
    	frames     []Frame
    	frameStore [2]Frame
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	c.Assert(err, nil)
    	// Since the "If-Modified-Since" header was ahead in time compared to the actual
    	// modified time of the object expecting the response status to be http.StatusNotModified.
    	c.Assert(response.StatusCode, http.StatusOK)
    }
    
    // TestHeadOnBucket - Validates response for HEAD on the bucket.
    // HEAD request on the bucket validates the existence of the bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    			// space in it, just not enough contiguous space to
    			// accommodate npages.
    			p.searchAddr = maxSearchAddr()
    		}
    		return 0, 0
    	}
    Found:
    	// Go ahead and actually mark the bits now that we have an address.
    	scav = p.allocRange(addr, npages)
    
    	// If we found a higher searchAddr, we know that all the
    	// heap memory before that searchAddr in an offset address space is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    			xremove(exe + ".exe")
    		case !d.IsDir() && strings.HasPrefix(d.Name(), "z"):
    			// Remove generated file, identified by marker string.
    			head := make([]byte, 512)
    			if f, err := os.Open(path); err == nil {
    				io.ReadFull(f, head)
    				f.Close()
    			}
    			if bytes.HasPrefix(head, generated) {
    				xremove(path)
    			}
    		}
    		return nil
    	})
    
    	if rebuildall {
    		// Remove object tree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/regexp/regexp.go

    // one-character lookahead.
    type input interface {
    	step(pos int) (r rune, width int) // advance one rune
    	canCheckPrefix() bool             // can we look ahead without losing info?
    	hasPrefix(re *Regexp) bool
    	index(re *Regexp, pos int) int
    	context(pos int) lazyFlag
    }
    
    // inputString scans a string.
    type inputString struct {
    	str string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top