Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Scans (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/fmt/doc.go

    occurred. If the panic is caused by a nil receiver to an Error
    or String method, however, the output is the undecorated
    string, "<nil>".
    
    # Scanning
    
    An analogous set of functions scans formatted text to yield
    values.  [Scan], [Scanf] and [Scanln] read from [os.Stdin]; [Fscan],
    [Fscanf] and [Fscanln] read from a specified [io.Reader]; [Sscan],
    [Sscanf] and [Sscanln] read from an argument string.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/image/gif/reader.go

    	}
    	return int(n), nil
    }
    
    // interlaceScan defines the ordering for a pass of the interlace algorithm.
    type interlaceScan struct {
    	skip, start int
    }
    
    // interlacing represents the set of scans in an interlaced GIF image.
    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/math/big/natconv.go

    		}
    		x *= x
    		n >>= 1
    	}
    	return
    }
    
    // scan errors
    var (
    	errNoDigits = errors.New("number has no digits")
    	errInvalSep = errors.New("'_' must separate successive digits")
    )
    
    // scan scans the number corresponding to the longest possible prefix
    // from r representing an unsigned number in a given conversion base.
    // scan returns the corresponding natural number res, the actual base b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    Gradle takes care of specifying a compatible version of `scala-library` for you.
    
    You can diagnose problems with the version of the Zinc compiler selected by running <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,dependencyInsight>> for the `zinc` configuration.
    
    .Zinc compatibility table
    [%header%autowidth,compact]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.cc

      // Does not take ownership of `values`. `values` must outlive this.
      // `values` must be sorted.
      explicit SinglePassSearch(absl::Span<int const> values)
          : current_index_(0), values_(values) {}
    
      // Scans forward in the vector looking for "value", updating the internal
      // position in to the vector.
      // Returns true iff the vector contains the given value at or after current
      // position.
      // Not thread-safe.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top