Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 516 for beginning (0.21 sec)

  1. src/regexp/exec_test.go

    // “full match” that restricts the regexp to matching the entire
    // string or nothing, and one for a “partial match” that gives
    // the leftmost first match found in the string.
    //
    // Lines beginning with # are comments. Lines beginning with
    // a capital letter are test names printed during RE2's test suite
    // and are echoed into t but otherwise ignored.
    //
    // At time of writing, re2-exhaustive.txt is 59 MB but compresses to 385 kB,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	C_EXT     = 2   // External symbol
    	C_STAT    = 3   // Static symbol
    	C_BLOCK   = 100 // Beginning or end of inner block
    	C_FCN     = 101 // Beginning or end of function
    	C_FILE    = 103 // Source file name and compiler information
    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/pass.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    // Code and data passes.
    
    // brloop returns the ultimate destination of the series of unconditional jumps beginning at p.
    // In the case of an infinite loop, brloop returns nil.
    func brloop(p *Prog) *Prog {
    	c := 0
    	for q := p; q != nil; q = q.To.Target() {
    		if q.As != AJMP || q.To.Target() == nil {
    			return q
    		}
    		c++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/embed/embed.go

    // string literals.
    //
    // If a pattern names a directory, all files in the subtree rooted at that directory are
    // embedded (recursively), except that files with names beginning with ‘.’ or ‘_’
    // are excluded. So the variable in the above example is almost equivalent to:
    //
    //	// content is our static web server content.
    //	//go:embed image template html/index.html
    //	var content embed.FS
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	// shortPrefix is one possible beginning of yaml unmarshal strict errors.
    	shortPrefix = "yaml: unmarshal errors:\n"
    	// longPrefix is the other possible beginning of yaml unmarshal strict errors.
    	longPrefix = "error converting YAML to JSON: yaml: unmarshal errors:\n"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/positions.go

    	// Cases for nodes which don't need a correction are commented out.
    	for m := n; ; {
    		switch n := m.(type) {
    		case nil:
    			panic("nil node")
    
    		// packages
    		case *File:
    			// file block starts at the beginning of the file
    			return MakePos(n.Pos().Base(), 1, 1)
    
    		// declarations
    		// case *ImportDecl:
    		// case *ConstDecl:
    		// case *TypeDecl:
    		// case *VarDecl:
    		// case *FuncDecl:
    
    		// expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/source.go

    package syntax
    
    import (
    	"io"
    	"unicode/utf8"
    )
    
    // The source buffer is accessed using three indices b (begin),
    // r (read), and e (end):
    //
    // - If b >= 0, it points to the beginning of a segment of most
    //   recently read characters (typically a Go literal).
    //
    // - r points to the byte immediately following the most recently
    //   read character ch, which starts at r-chw.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/union.go

    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    			// in the term list of the union's type set).
    			if f != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    	// raw value errors
    	{CaseName: Name(""), in: "\x01 42", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}},
    	{CaseName: Name(""), in: " 42 \x01", err: &SyntaxError{"invalid character '\\x01' after top-level value", 5}},
    	{CaseName: Name(""), in: "\x01 true", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/log/log.go

    	LUTC                          // if Ldate or Ltime is set, use UTC rather than the local time zone
    	Lmsgprefix                    // move the "prefix" from the beginning of the line to before the message
    	LstdFlags     = Ldate | Ltime // initial values for the standard logger
    )
    
    // A Logger represents an active logging object that generates lines of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top