Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,137 for begins (0.17 sec)

  1. src/internal/trace/raw/doc.go

    The trace text format produced and consumed by this package is a line-oriented
    format.
    
    The first line in each text trace is the header line.
    
    	Trace Go1.XX
    
    Following that is a series of event lines. Each event begins with an
    event name, followed by zero or more named unsigned integer arguments.
    Names are separated from their integer values by an '=' sign. Names can
    consist of any UTF-8 character except '='.
    
    For example:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/txtar/archive.go

    //   - diff nicely in git history and code reviews.
    //
    // Non-goals include being a completely general archive format,
    // storing binary data, storing file modes, storing special files like
    // symbolic links, and so on.
    //
    // # Txtar format
    //
    // A txtar archive is zero or more comment lines and then a sequence of file entries.
    // Each file entry begins with a file marker line of the form "-- FILENAME --"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/str/path.go

    // license that can be found in the LICENSE file.
    
    package str
    
    import (
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    )
    
    // HasPathPrefix reports whether the slash-separated path s
    // begins with the elements in prefix.
    func HasPathPrefix(s, prefix string) bool {
    	if len(s) == len(prefix) {
    		return s == prefix
    	}
    	if prefix == "" {
    		return true
    	}
    	if len(s) > len(prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // the TunnelingConnection. A lot of the other code in streamtunnel.go
    // is for properly upgrading both the upstream SPDY connection and the
    // downstream WebSocket connection before streaming begins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskDependency.java

         * execution graph for a build. This occurs after all the projects have been evaluated, and before any task
         * execution begins.</p>
         *
         * @param task The task to determine the dependencies for.
         * @return The tasks which the given task depends on. Returns an empty set if the task has no dependencies.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle-audit.go

    //go:generate stringer -type lcEventSrc -trimprefix lcEventSrc_ $GOFILE
    type lcEventSrc uint8
    
    //revive:disable:var-naming Underscores is used here to indicate where common prefix ends and the enumeration name begins
    const (
    	lcEventSrc_None lcEventSrc = iota
    	lcEventSrc_Heal
    	lcEventSrc_Scanner
    	lcEventSrc_Decom
    	lcEventSrc_Rebal
    	lcEventSrc_s3HeadObject
    	lcEventSrc_s3GetObject
    	lcEventSrc_s3ListObjects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 01 15:56:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/internal/nettrace/nettrace.go

    // Trace contains a set of hooks for tracing events within
    // the net package. Any specific hook may be nil.
    type Trace struct {
    	// DNSStart is called with the hostname of a DNS lookup
    	// before it begins.
    	DNSStart func(name string)
    
    	// DNSDone is called after a DNS lookup completes (or fails).
    	// The coalesced parameter is whether singleflight de-duped
    	// the call. The addrs are of type net.IPAddr but can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/os/exec/lp_plan9.go

    	if m := d.Mode(); !m.IsDir() && m&0111 != 0 {
    		return nil
    	}
    	return fs.ErrPermission
    }
    
    // LookPath searches for an executable named file in the
    // directories named by the path environment variable.
    // If file begins with "/", "#", "./", or "../", it is tried
    // directly and the path is not consulted.
    // On success, the result is an absolute path.
    //
    // In older versions of Go, LookPath could return a path relative to the current directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/exportdata.go

    			return
    		}
    	}
    
    	// Now at __.PKGDEF in archive or still at beginning of file.
    	// Either way, line should begin with "go object ".
    	if !strings.HasPrefix(string(line), "go object ") {
    		err = fmt.Errorf("not a Go object file")
    		return
    	}
    	size -= len(line)
    
    	// Skip over object header to export data.
    	// Begins after first line starting with $$.
    	for line[0] != '$' {
    		if line, err = r.ReadSlice('\n'); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    void CopyAttributes(Operation *from, Operation *to, Predicate P) {
      for (const NamedAttribute &attr : from->getAttrs())
        if (P(attr)) to->setAttr(attr.getName(), attr.getValue());
    }
    
    // Copies attributes whose name begins with an _ from `from` to `to`.
    inline void CopyUnderscoredAttributes(Operation *from, Operation *to) {
      CopyAttributes(from, to, [](const NamedAttribute &attr) {
        return attr.getName().strref().front() == '_';
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top