Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 450 for eventual (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/cgo/doc.go

    creating go.o. Indeed, the definition for _cgo_gcc_Cfunc_sin will be
    provided to the host linker by foo2.cgo.o, which in turn will need the
    symbol 'sin'. cmd/link also processes the cgo_ldflag directives, so that it
    knows that the eventual host link command must include the -lm
    argument, so that the host linker will be able to find 'sin' in the
    math library.
    
    cmd/link Command Line Interface
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    func (t *Type) MapType() *Map {
    	t.wantEtype(TMAP)
    	return t.extra.(*Map)
    }
    
    // Forward contains Type fields specific to forward types.
    type Forward struct {
    	Copyto      []*Type  // where to copy the eventual value to
    	Embedlineno src.XPos // first use of this type as an embedded type
    }
    
    // forwardType returns t's extra forward-type-specific fields.
    func (t *Type) forwardType() *Forward {
    	t.wantEtype(TFORW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top