Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for closeDot (0.25 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

                        // Filter out lines that need more edits than half the length of the line
                        .filter(pair -> pair.getDistance() < pair.getLine().length() / 2)
                        // Find the closest match
                        .min(Comparator.comparingInt(LineWithDistance::getDistance))
                        .map(LineWithDistance::getLine)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	RegArgs []Spill
    	// OwnAux describes parameters and results for this function.
    	OwnAux *AuxCall
    	// CloSlot holds the compiler-synthesized name (".closureptr")
    	// where we spill the closure pointer for range func bodies.
    	CloSlot *ir.Name
    
    	freeValues *Value // free Values linked by argstorage[0].  All other fields except ID are 0/nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/strconv/ftoa.go

    	// will round to the original floating point number.
    
    	// We may see at once that the number is already shortest.
    	//
    	// Suppose d is not denormal, so that 2^exp <= d < 10^dp.
    	// The closest shorter number is at least 10^(dp-nd) away.
    	// The lower/upper bounds computed below are at distance
    	// at most 2^(exp-mantbits).
    	//
    	// So the number is already shortest if 10^(dp-nd) > 2^(exp-mantbits),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

    };
    
    using Permutation = SmallVector<int64_t, 4>;
    
    void LayoutAssignmentPass::runOnOperation() {
      func::FuncOp func = getOperation();
    
      // Get runtime devices information from the closest parent module.
      RuntimeDevices devices;
      if (failed(::tensorflow::GetDevicesFromOp(func->getParentOfType<ModuleOp>(),
                                                &devices)))
        return signalPassFailure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. pkg/ledger/smt.go

    	retentionDuration time.Duration
    	// lock is for the whole struct
    	lock sync.RWMutex
    	// atomicUpdate, commit all the changes made by intermediate update calls
    	atomicUpdate bool
    }
    
    // this is the closest time.Duration comes to Forever, with a duration of ~145 years
    // we can'tree use int64 max because the duration gets added to Now(), and the ints
    // rollover, causing an immediate expiration (ironic, eh?)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    type paramMode int
    
    const (
    	funcParam paramMode = iota
    	funcTParam
    	typeTParam
    )
    
    func (p *printer) parameters(fields *ast.FieldList, mode paramMode) {
    	openTok, closeTok := token.LPAREN, token.RPAREN
    	if mode != funcParam {
    		openTok, closeTok = token.LBRACK, token.RBRACK
    	}
    	p.setPos(fields.Opening)
    	p.print(openTok)
    	if len(fields.List) > 0 {
    		prevLine := p.lineFor(fields.Opening)
    		ws := indent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    | link:{javadocPath}/org/gradle/api/NamedDomainObjectCollection.html#findByName-java.lang.String-[NamedDomainObjectCollection.findByName()]
    | Do not use. `named()` is the closest equivalent, but will fail if the task does not exist.
    
    | `iterator()` or implicit iteration over the `Task` collection
    | Avoid doing this as it requires creating and configuring all tasks.
    
    | `remove()`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    //  1. If the first zone is unused by the transitions, use it.
    //  2. Otherwise, if there are transition times, and the first
    //     transition is to a zone in daylight time, find the first
    //     non-daylight-time zone before and closest to the first transition
    //     zone.
    //  3. Otherwise, use the first zone that is not daylight time, if
    //     there is one.
    //  4. Otherwise, use the first zone.
    func (l *Location) lookupFirstZone() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_test.go

    	question := make(chan uintptr)
    	response := make(chan uintptr)
    	defer close(question)
    
    	routines := 0
    	for i, v := range fns {
    		for j := 0; j < launches; j++ {
    			// Add another goroutine - the closest thing
    			// we can do to encourage more OS thread
    			// creation - while the test is running.  The
    			// actual thread creation may or may not be
    			// needed, based on the number of available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/query-params-str-validations.md

    Imagine that you want the parameter to be `item-query`.
    
    Like in:
    
    ```
    http://127.0.0.1:8000/items/?item-query=foobaritems
    ```
    
    But `item-query` is not a valid Python variable name.
    
    The closest would be `item_query`.
    
    But you still need it to be exactly `item-query`...
    
    Then you can declare an `alias`, and that alias is what will be used to find the parameter value:
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top