Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Closes (0.07 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // startScope starts a scope. This is used to decide whether we need
    // to parenthesize an expression using > or >>.
    func (ps *printState) startScope(b byte) {
    	ps.scopes++
    	ps.writeByte(b)
    }
    
    // endScope closes a scope.
    func (ps *printState) endScope(b byte) {
    	ps.scopes--
    	ps.writeByte(b)
    }
    
    // precedence is used for operator precedence. This is used to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		if matchErr.Match.IsLiteral() {
    			// The error has a pattern has a pattern similar to the import path.
    			// It may be slightly different (./foo matching example.com/foo),
    			// but close enough to seem redundant.
    			// Unwrap the error so we don't show the pattern.
    			err = matchErr.Err
    		}
    	}
    
    	// Replace (possibly wrapped) *build.NoGoError with *load.NoGoError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // a version on the left side is dropped.
    //
    // The -retract=version and -dropretract=version flags add and drop a
    // retraction on the given version. The version may be a single version
    // like "v1.2.3" or a closed interval like "[v1.1.0,v1.1.9]". Note that
    // -retract=version is a no-op if that retraction already exists.
    //
    // The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    const (
    	// branchBackwards marks targets that are located behind.
    	// Used to express jumps to loop headers.
    	branchBackwards = (1 << iota)
    	// branchShort marks branches those target is close,
    	// with offset is in -128..127 range.
    	branchShort
    	// branchLoopHead marks loop entry.
    	// Used to insert padding for misaligned loops.
    	branchLoopHead
    )
    
    // opBytes holds optab encoding bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top