Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for Scans (0.04 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/debug/gosym/pclntab.go

    	p := t.pctab[off:]
    
    	val := int32(-1)
    	pc := entry
    	for t.step(&p, &pc, &val, pc == entry) {
    		if targetpc < pc {
    			return val
    		}
    	}
    	return -1
    }
    
    // findFileLine scans one function in the binary looking for a
    // program counter in the given file on the given line.
    // It does so by running the pc-value tables mapping program counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. cmd/metacache-entries.go

    	// name is the full name of the object including prefixes
    	name string
    	// Metadata. If none is present it is not an object but only a prefix.
    	// Entries without metadata will only be present in non-recursive scans.
    	metadata []byte
    
    	// cached contains the metadata if decoded.
    	cached *xlMetaV2
    
    	// Indicates the entry can be reused and only one reference to metadata is expected.
    	reusable bool
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/attach_detach_controller.go

    			// volume spec is not needed to detach a volume. If the volume is used by a pod, it
    			// its spec can be: this would happen during in the populateDesiredStateOfWorld which
    			// scans the pods and updates their volumes in the ActualStateOfWorld too.
    			err = adc.actualStateOfWorld.MarkVolumeAsAttached(logger, uniqueName, nil /* VolumeSpec */, nodeName, attachedVolume.DevicePath)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top