Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,905 for Consumes (0.12 sec)

  1. cmd/admin-heal-ops.go

    	healFinishedStatus                     = "finished"
    )
    
    const (
    	// a heal sequence with this many un-consumed heal result
    	// items blocks until heal-status consumption resumes or is
    	// aborted due to timeout.
    	maxUnconsumedHealResultItems = 1000
    
    	// if no heal-results are consumed (via the heal-status API)
    	// for this timeout duration, the heal sequence is aborted.
    	healUnconsumedTimeout = 24 * time.Hour
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/go/printer/printer.go

    	}
    
    	if isLit {
    		p.output = append(p.output, tabwriter.Escape)
    	}
    
    	p.last = p.pos
    }
    
    // writeCommentPrefix writes the whitespace before a comment.
    // If there is any pending whitespace, it consumes as much of
    // it as is likely to help position the comment nicely.
    // pos is the comment position, next the position of the item
    // after all pending comments, prev is the previous comment in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. src/time/format.go

    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		// Consume [0-9]*
    		pl := len(s)
    		v, s, err = leadingInt(s)
    		if err != nil {
    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		pre := pl != len(s) // whether we consumed anything before a period
    
    		// Consume (\.[0-9]*)?
    		post := false
    		if s != "" && s[0] == '.' {
    			s = s[1:]
    			pl := len(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If one task produces an output in a location and another task consumes that location by referring to it as an input, then Gradle checks that the consumer task depends on the producer task.
    When the producer and the consumer tasks are executing at the same time, the build fails to avoid capturing an incorrect state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    // pollDesc contains 2 binary semaphores, rg and wg, to park reader and writer
    // goroutines respectively. The semaphore can be in the following states:
    //
    //	pdReady - io readiness notification is pending;
    //	          a goroutine consumes the notification by changing the state to pdNil.
    //	pdWait - a goroutine prepares to park on the semaphore, but not yet parked;
    //	         the goroutine commits to park by changing the state to G pointer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // still compiled on host.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateExtractTPUCopyWithDynamicShapeOpPass();
    
    // Creates a pass that wraps ReadVariableOp/AssignVariable op that consumes a
    // packed tensor to have same device placement as underlying TPU device.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTPUColocateCompositeResourceOps();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	// Start with the record hash.
    	hashes := []Hash{h}
    
    	// Build list of indexes needed for hashes for completed subtrees.
    	// Each trailing 1 bit in the binary representation of n completes a subtree
    	// and consumes a hash from an adjacent subtree.
    	m := int(bits.TrailingZeros64(uint64(n + 1)))
    	indexes := make([]int64, m)
    	for i := 0; i < m; i++ {
    		// We arrange indexes in sorted order.
    		// Note that n>>i is always odd.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. src/runtime/profbuf.go

    }
    
    // hasOverflow reports whether b has any overflow records pending.
    func (b *profBuf) hasOverflow() bool {
    	return uint32(b.overflow.Load()) > 0
    }
    
    // takeOverflow consumes the pending overflow records, returning the overflow count
    // and the time of the first overflow.
    // When called by the reader, it is racing against incrementOverflow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      }
    
      // Get the function on device.
      auto device_func = cluster_func->getFuncOp();
      if (!device_func) return;
    
      TF::Conv2DOp first_conv;
      // A map maps block argument id to the convolutions consumes them.
      llvm::SmallDenseMap<unsigned, std::vector<Conv2DWithBlockSize>>
          argnum_and_convolutions;
      // A map maps block argument id to the number of users.
      llvm::SmallDenseMap<unsigned, int> argnum_num_users;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	for i := 0; i < len(prefix); i++ {
    		if i >= len(in.remaining) || in.remaining[i] != prefix[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // readRune consumes and returns the next rune in the input.
    func (in *input) readRune() int {
    	if len(in.remaining) == 0 {
    		in.Error("internal lexer error: readRune at EOF")
    	}
    	r, size := utf8.DecodeRune(in.remaining)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top