Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for Scans (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/type.go

    	copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.Data(off)))[:])
    	pkgPathName := resolveNameOff(unsafe.Pointer(n.Bytes), nameOff)
    	return pkgPathName.Name()
    }
    
    // typelinksinit scans the types from extra modules and builds the
    // moduledata typemap used to de-duplicate type pointers.
    func typelinksinit() {
    	if firstmoduledata.next == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/encoding/json/decode.go

    		switch err := err.(type) {
    		case *UnmarshalTypeError:
    			err.Struct = d.errorContext.Struct.Name()
    			err.Field = strings.Join(d.errorContext.FieldStack, ".")
    		}
    	}
    	return err
    }
    
    // skip scans to the end of what was started.
    func (d *decodeState) skip() {
    	s, data, i := &d.scan, d.data, d.off
    	depth := len(s.parseState)
    	for {
    		op := s.step(s, data[i])
    		i++
    		if len(s.parseState) < depth {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

              "interval": "1m",
              "legendFormat": "[{{server}}]",
              "refId": "A"
            }
          ],
          "title": "Bucket Scans Finished",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  10. src/math/big/ratconv.go

    	} else if exp2 < 0 {
    		z.b.abs = z.b.abs.shl(z.b.abs, uint(-exp2))
    	}
    
    	z.a.neg = neg && len(z.a.abs) > 0 // 0 has no sign
    
    	return z.norm(), true
    }
    
    // scanExponent scans the longest possible prefix of r representing a base 10
    // (“e”, “E”) or a base 2 (“p”, “P”) exponent, if any. It returns the
    // exponent, the exponent base (10 or 2), or a read or syntax error, if any.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top