Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 358 for escapers (0.52 sec)

  1. src/go/printer/printer.go

    				_, err = p.output.Write(aNewline)
    			case tabwriter.Escape:
    				_, err = p.output.Write(p.space)
    				p.state = inEscape
    				m = n + 1 // +1: skip tabwriter.Escape
    			default:
    				_, err = p.output.Write(p.space)
    				p.state = inText
    				m = n
    			}
    		case inEscape:
    			if b == tabwriter.Escape {
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// Accessible property names are escaped according to the following rules when accessed in the expression:
    	// - '__' escapes to '__underscores__'
    	// - '.' escapes to '__dot__'
    	// - '-' escapes to '__dash__'
    	// - '/' escapes to '__slash__'
    	// - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_riscv64.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_arm64.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(addr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue31573.go

    	go f()
    	go f(new(int))           // ERROR "... argument does not escape$" "new\(int\) does not escape$"
    	go f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
    
    	go f(nil...)
    	go f([]*int{}...)                   // ERROR "\[\]\*int{} does not escape$"
    	go f([]*int{new(int)}...)           // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:37:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_loong64.go

    //go:noescape
    func Load(ptr *uint32) uint32
    
    //go:noescape
    func Load8(ptr *uint8) uint8
    
    //go:noescape
    func Load64(ptr *uint64) uint64
    
    // NO go:noescape annotation; *ptr escapes if result escapes (#31525)
    func Loadp(ptr unsafe.Pointer) unsafe.Pointer
    
    //go:noescape
    func LoadAcq(ptr *uint32) uint32
    
    //go:noescape
    func LoadAcq64(ptr *uint64) uint64
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

                }
    
                // Use the ANSIOutputStream to strip out the ANSI escape sequences.
                return new AnsiOutputStream(stream);
            }
    
            // We must be on some Unix variant, including MSYS(2) on Windows...
            try {
                // If the jansi.force property is set, then we force to output
                // the ansi escapes for piping it into ansi color aware commands (e.g. less -r)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

          result.write(this, i)
          // Consume '"'.
          readByte()
          return result.readUtf8()
        }
    
        if (size == i + 1L) return null // Dangling escape.
        result.write(this, i)
        // Consume '\'.
        readByte()
        result.write(this, 1L) // The escaped character.
      }
    }
    
    /**
     * Consumes and returns a non-empty token, terminating at special characters in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    	escQuot = []byte(""") // shorter than """
    	escApos = []byte("'") // shorter than "'"
    	escAmp  = []byte("&")
    	escLT   = []byte("<")
    	escGT   = []byte(">")
    	escTab  = []byte("	")
    	escNL   = []byte("
")
    	escCR   = []byte("
")
    	escFFFD = []byte("\uFFFD") // Unicode replacement character
    )
    
    // EscapeText writes to w the properly escaped XML equivalent
    // of the plain text data s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top