Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 148 for Scans (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/volume/util/fsquota/quota_linux.go

    		// a bind mount from one part of a mount to another.
    		// For our purposes that's fine; we simply want the "true"
    		// mount point
    		//
    		// IsNotMountPoint proved much more troublesome; it actually
    		// scans the mounts, and when a lot of mount/unmount
    		// activity takes place, it is not able to get a consistent
    		// view of /proc/self/mounts, causing it to time out and
    		// report incorrectly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    	b = 0
    	if l.pos < len(l.s) {
    		b = l.s[l.pos]
    		l.pos++
    	}
    	return b
    }
    
    // unread 'undoes' the last read character
    func (l *Lexer) unread() {
    	l.pos--
    }
    
    // scanIDOrKeyword scans string to recognize literal token (for example 'in') or an identifier.
    func (l *Lexer) scanIDOrKeyword() (tok Token, lit string) {
    	var buffer []byte
    IdentifierLoop:
    	for {
    		switch ch := l.read(); {
    		case ch == 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/internal/generate/generate.go

    files. Those commands can run any process but the intent is to
    create or update Go source files.
    
    Go generate is never run automatically by go build, go test,
    and so on. It must be run explicitly.
    
    Go generate scans the file for directives, which are lines of
    the form,
    
    	//go:generate command argument...
    
    (note: no leading spaces and no space in "//go") where command
    is the generator to be run, corresponding to an executable file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top