Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,547 for need (0.08 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    		forEachWrapperABI(fn, makeABIWrapper)
    	}
    }
    
    func forEachWrapperABI(fn *ir.Func, cb func(fn *ir.Func, wrapperABI obj.ABI)) {
    	need := fn.ABIRefs &^ obj.ABISetOf(fn.ABI)
    	if need == 0 {
    		return
    	}
    
    	for wrapperABI := obj.ABI(0); wrapperABI < obj.ABICount; wrapperABI++ {
    		if !need.Get(wrapperABI) {
    			continue
    		}
    		cb(fn, wrapperABI)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    			throw("invalid g status")
    
    		case _Gdead:
    			// Nothing to suspend.
    			//
    			// preemptStop may need to be cleared, but
    			// doing that here could race with goroutine
    			// reuse. Instead, goexit0 clears it.
    			return suspendGState{dead: true}
    
    		case _Gcopystack:
    			// The stack is being copied. We need to wait
    			// until this is done.
    
    		case _Gpreempted:
    			// We (or someone else) suspended the G. Claim
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    func (f *File) AddGodebug(key, value string) error {
    	need := true
    	for _, g := range f.Godebug {
    		if g.Key == key {
    			if need {
    				g.Value = value
    				f.Syntax.updateLine(g.Syntax, "godebug", key+"="+value)
    				need = false
    			} else {
    				g.Syntax.markRemoved()
    				*g = Godebug{}
    			}
    		}
    	}
    
    	if need {
    		f.addNewGodebug(key, value)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AggregateFuture.java

          handleAllCompleted();
          return;
        }
    
        // NOTE: If we ever want to use a custom executor here, have a look at CombinedFuture as we'll
        // need to handle RejectedExecutionException
    
        if (allMustSucceed) {
          // We need fail fast, so we have to keep track of which future failed so we can propagate
          // the exception immediately
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/noderesources.go

    	var driverResources []*resourceapi.ResourceModel
    	c.mutex.RLock()
    	if active, ok := c.activePlugins[driverName]; ok {
    		// No need for a deep copy, the entire slice gets replaced on writes.
    		driverResources = active.resources
    	}
    	c.mutex.RUnlock()
    
    	// Resources that are not yet stored in any slice need to be published.
    	// Here we track the indices of any resources that are already stored.
    	storedResourceIndices := sets.New[int]()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

          handleAllCompleted();
          return;
        }
    
        // NOTE: If we ever want to use a custom executor here, have a look at CombinedFuture as we'll
        // need to handle RejectedExecutionException
    
        if (allMustSucceed) {
          // We need fail fast, so we have to keep track of which future failed so we can propagate
          // the exception immediately
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/sql-databases-peewee.md

    If you are developing an application with an older non-async framework, and can work with all its defaults, **it can be a great tool**.
    
    But if you need to change some of the defaults, support more than one predefined database, work with an async framework (like FastAPI), etc, you will need to add quite some complex extra code to override those defaults.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

    ## Configuration protocol
    
    Ztunnel, of course, needs to be dynamically configured in order to make decisions on how it should handle traffic.
    For this purpose, we chose to use xDS transport protocol due to our expertise and existing infrastructure, and because the protocol is well suited to our needs.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this problem, you need to annotate the property with the appropriate annotation, for example `@InputDirectory` for a property representing an input directory, or `@OutputDirectory` for a property representing an output directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    <2> <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    <3> Scripts for executing Gradle builds.
    
    If the `gradlew` or `gradlew.bat` files are already present in your project, *you do not need to install Gradle*.
    But you need to make sure your system <<installation#sec:prerequisites,satisfies Gradle's prerequisites>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top