Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 366 for eventual (0.16 sec)

  1. src/cmd/compile/internal/walk/expr.go

    	n.X = walkExpr(n.X, init)
    
    	// cannot put side effects from n.Right on init,
    	// because they cannot run before n.Left is checked.
    	// save elsewhere and store on the eventual n.Right.
    	var ll ir.Nodes
    
    	n.Y = walkExpr(n.Y, &ll)
    	n.Y = ir.InitExpr(ll, n.Y)
    	return n
    }
    
    // walkSend walks an OSEND node.
    func walkSend(n *ir.SendStmt, init *ir.Nodes) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
       * @param estimatedSize an estimate of the eventual {@link List#size()} of the new list
       * @return a new, empty {@code ArrayList}, sized appropriately to hold the estimated number of
       *     elements
       * @throws IllegalArgumentException if {@code estimatedSize} is negative
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Lists.java

       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
       * @param estimatedSize an estimate of the eventual {@link List#size()} of the new list
       * @return a new, empty {@code ArrayList}, sized appropriately to hold the estimated number of
       *     elements
       * @throws IllegalArgumentException if {@code estimatedSize} is negative
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/action.go

    	})
    
    	// Install result.
    	if (mode == ModeInstall || mode == ModeBuggyInstall) && a.Actor != nil {
    		buildAction := a
    
    		a = b.cacheAction("install-shlib "+shlib, nil, func() *Action {
    			// Determine the eventual install target.
    			// The install target is root/pkg/shlib, where root is the source root
    			// in which all the packages lie.
    			// TODO(rsc): Perhaps this cross-root check should apply to the full
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                }
            }
    
            String[] lines = NEXT_LINE.split(msg);
            String currentColor = "";
    
            for (int i = 0; i < lines.length; i++) {
                // add eventual current color inherited from previous line
                String line = currentColor + lines[i];
    
                // look for last ANSI escape sequence to check if nextColor
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // RequestDigest holds necessary info from request for flow-control
    type RequestDigest struct {
    	RequestInfo *request.RequestInfo
    	User        user.Info
    }
    
    // `*configController` maintains eventual consistency with the API
    // objects that configure API Priority and Fairness, and provides a
    // procedural interface to the configured behavior.  The methods of
    // this type and cfgMeal follow the convention that the suffix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	defer func() {
    		updateAllNodesHealthDuration.Observe(time.Since(start.Time).Seconds())
    	}()
    
    	// We are listing nodes from local cache as we can tolerate some small delays
    	// comparing to state from etcd and there is eventual consistency anyway.
    	nodes, err := nc.nodeLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    	added, deleted, newZoneRepresentatives := nc.classifyNodes(nodes)
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * </p>
         * <ul>
         *     <li>The configuration is detached and the new value is false.</li>
         *     <li>The current value and the new value are the same</li>
         * </ul>
         *
         * The eventual goal is that all configuration usage be specified upon creation and immutable
         * thereafter.
         */
        private void maybeWarnOnChangingUsage(String methodName, boolean current, boolean newValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/arm64/asm.go

    		case objabi.R_ARM64_GOTPCREL,
    			objabi.R_ARM64_PCREL_LDST8,
    			objabi.R_ARM64_PCREL_LDST16,
    			objabi.R_ARM64_PCREL_LDST32,
    			objabi.R_ARM64_PCREL_LDST64,
    			objabi.R_ADDRARM64:
    
    			// set up addend for eventual relocation via outer symbol.
    			rs, off := ld.FoldSubSymbolOffset(ldr, rs)
    			xadd := r.Add() + off
    			rst := ldr.SymType(rs)
    			if rst != sym.SHOSTOBJ && rst != sym.SDYNIMPORT && ldr.SymSect(rs) == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  10. src/flag/flag.go

    var CommandLine = NewFlagSet(os.Args[0], ExitOnError)
    
    func init() {
    	// Override generic FlagSet default Usage with call to global Usage.
    	// Note: This is not CommandLine.Usage = Usage,
    	// because we want any eventual call to use any updated value of Usage,
    	// not the value it has when this line is run.
    	CommandLine.Usage = commandLineUsage
    }
    
    func commandLineUsage() {
    	Usage()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top