Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 148 for Scans (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. finisher_api.go

    	tx = tx.callbacks.Row().Execute(tx)
    	rows, ok := tx.Statement.Dest.(*sql.Rows)
    	if !ok && tx.DryRun && tx.Error == nil {
    		tx.Error = ErrDryRunModeUnsupported
    	}
    	return rows, tx.Error
    }
    
    // Scan scans selected value to the struct dest
    func (db *DB) Scan(dest interface{}) (tx *DB) {
    	config := *db.Config
    	currentLogger, newLogger := config.Logger, logger.Recorder.New()
    	config.Logger = newLogger
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/cm/cgroup_manager_linux.go

    	if err := manager.Set(libcontainerCgroupConfig.Resources); err != nil {
    		utilruntime.HandleError(fmt.Errorf("cgroup manager.Set failed: %w", err))
    	}
    
    	return nil
    }
    
    // Scans through all subsystems to find pids associated with specified cgroup.
    func (m *cgroupManagerImpl) Pids(name CgroupName) []int {
    	// we need the driver specific name
    	cgroupFsName := m.Name(name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. src/runtime/chan_test.go

    	const n = 10
    	send := func(c chan<- int, done chan struct{}) {
    		for i := 0; i < n; i++ {
    			c <- i
    			// Use lots of stack briefly so that
    			// the GC is going to want to shrink us
    			// when it scans us. Make sure not to
    			// do any function calls otherwise
    			// in order to avoid us shrinking ourselves
    			// when we're preempted.
    			stackGrowthRecursive(20)
    		}
    		done <- struct{}{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  10. 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)
Back to top