Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for Scans (0.04 sec)

  1. docs/metrics/prometheus/list.md

    |:-------------------------------------------|:------------------------------------------------------------|
    | `minio_node_scanner_bucket_scans_finished` | Total number of bucket scans finished since server start.   |
    | `minio_node_scanner_bucket_scans_started`  | Total number of bucket scans started since server start.    |
    | `minio_node_scanner_directories_scanned`   | Total number of directories scanned since server start.     |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  2. cmd/global-heal.go

    	"github.com/minio/pkg/v3/wildcard"
    	"github.com/minio/pkg/v3/workers"
    )
    
    const (
    	bgHealingUUID = "0000-0000-0000-0000"
    )
    
    // NewBgHealSequence creates a background healing sequence
    // operation which scans all objects and heal them.
    func newBgHealSequence() *healSequence {
    	reqInfo := &logger.ReqInfo{API: "BackgroundHeal"}
    	ctx, cancelCtx := context.WithCancel(logger.SetReqInfo(GlobalContext, reqInfo))
    
    	hs := madmin.HealOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/runtime/preempt.go

    }
    
    //go:generate go run mkpreempt.go
    
    // asyncPreempt saves all user registers and calls asyncPreempt2.
    //
    // When stack scanning encounters an asyncPreempt frame, it scans that
    // frame and its parent frame conservatively.
    //
    // asyncPreempt is implemented in assembly.
    func asyncPreempt()
    
    //go:nosplit
    func asyncPreempt2() {
    	gp := getg()
    	gp.asyncSafePoint = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

                filter_quantized_type.getStorageTypeMin(),
                filter_quantized_type.getStorageTypeMax()),
            /*override=*/true);
      }
      return changed;
    }
    
    // This method scans the operations in the function to setup the initial
    // states for quantization parameter propagation.
    // TODO: b/323478683 - This algorithm assumes there are only one pair of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/regexp/regexp.go

    	canCheckPrefix() bool             // can we look ahead without losing info?
    	hasPrefix(re *Regexp) bool
    	index(re *Regexp, pos int) int
    	context(pos int) lazyFlag
    }
    
    // inputString scans a string.
    type inputString struct {
    	str string
    }
    
    func (i *inputString) step(pos int) (rune, int) {
    	if pos < len(i.str) {
    		c := i.str[pos]
    		if c < utf8.RuneSelf {
    			return rune(c), 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	}
    	scan.toLower(scan.start, len(scan.b))
    	t.pVariant = byte(end)
    	end = parseVariants(scan, end, t)
    	t.pExt = uint16(end)
    	return t, end
    }
    
    var separator = []byte{'-'}
    
    // parseVariants scans tokens as long as each token is a valid variant string.
    // Duplicate variants are removed.
    func parseVariants(scan *scanner, end int, t Tag) int {
    	start := scan.start
    	varIDBuf := [4]uint8{}
    	variantBuf := [4][]byte{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
     *
     * <p>{@link #setDefault} allows subclasses to specify default values for types.
     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/mime/multipart/multipart.go

    	}
    	n := len(d)
    	if n > p.n {
    		n = p.n
    	}
    	n, _ = br.Read(d[:n])
    	p.total += int64(n)
    	p.n -= n
    	if p.n == 0 {
    		return n, p.err
    	}
    	return n, nil
    }
    
    // scanUntilBoundary scans buf to identify how much of it can be safely
    // returned as part of the Part body.
    // dashBoundary is "--boundary".
    // nlDashBoundary is "\r\n--boundary" or "\n--boundary", depending on what mode we are in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/runtime/mgcwork.go

    //
    // Write barriers, root discovery, stack scanning, and object scanning
    // produce pointers to grey objects. Scanning consumes pointers to
    // grey objects, thus blackening them, and then scans them,
    // potentially producing new pointers to grey objects.
    
    // A gcWork provides the interface to produce and consume work for the
    // garbage collector.
    //
    // A gcWork can be used on the stack as follows:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top