Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 618 for Trune (0.04 sec)

  1. test/fixedbugs/bug481.go

    // Returning an index into a conversion from string to slice caused a
    // compilation error when using gccgo.
    
    package p
    
    func F1(s string) byte {
    	return []byte(s)[0]
    }
    
    func F2(s string) rune {
    	return []rune(s)[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 390 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/trieval.go

    // info holds information from the IDNA mapping table for a single rune. It is
    // the value returned by a trie lookup. In most cases, all information fits in
    // a 16-bit value. For mappings, this value may contain an index into a slice
    // with the mapped string. Such mappings can consist of the actual mapped value
    // or an XOR pattern to be applied to the bytes of the UTF8 encoding of the
    // input rune. This technique is used by the cases packages and reduces the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. internal/s3select/csv/reader.go

    		ret := csv.NewReader(r)
    		ret.Comma = []rune(args.FieldDelimiter)[0]
    		ret.Comment = []rune(args.CommentCharacter)[0]
    		ret.Quote = []rune{}
    		if len([]rune(args.QuoteCharacter)) > 0 {
    			// Add the first rune of args.QuoteCharacter
    			ret.Quote = append(ret.Quote, []rune(args.QuoteCharacter)[0])
    		}
    		ret.QuoteEscape = []rune(args.QuoteEscapeCharacter)[0]
    		ret.FieldsPerRecord = -1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. hack/testdata/prune/a.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: a
      labels:
        prune-group: "true"
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 164 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/trie13.0.0.go

    // license that can be found in the LICENSE file.
    
    //go:build go1.16
    
    package idna
    
    // appendMapping appends the mapping for the respective rune. isMapped must be
    // true. A mapping is a categorization of a rune as defined in UTS #46.
    func (c info) appendMapping(b []byte, s string) []byte {
    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		p := index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 872 bytes
    - Viewed (0)
  6. hack/testdata/prune/b.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: b
      namespace: nsb
      labels:
        prune-group: "true"
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 180 bytes
    - Viewed (0)
  7. hack/make-rules/test.sh

      if [[ ! ${KUBE_KEEP_VERBOSE_TEST_OUTPUT} =~ ^[yY]$ ]]; then
        rm "${junit_filename_prefix}"*.stdout
      fi
    
      if ! command -v prune-junit-xml >/dev/null 2>&1; then
        kube::log::status "prune-junit-xml not found; installing from ./cmd"
        go -C "${KUBE_ROOT}/cmd/prune-junit-xml" install .
      fi
      prune-junit-xml "${junit_xml_filename}"
    
      kube::log::status "Saved JUnit XML test report to ${junit_xml_filename}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. test/typeparam/issue48191.go

    				return G2(619.2)
    			}(G3(""), 954.0)])
    		}
    		var m7 map[G2]int64
    		var ch7 chan byte
    		var fnc1 func(bool, func(chan G2, struct {
    			h0 G2
    		}, int64) **rune, int) map[complex128]int32 = func(p0 bool, p1 func(chan G2, struct {
    			h0 G2
    		}, int64) **rune, p2 int) map[complex128]int32 {
    			pf2 = pf2
    			as7 = as7
    			return map[complex128]int32{(94.02i - 22.19i) * (fnc0(pi64_0, G2(554.1)*G2(i1), struct {
    				i8_0  G1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. test/range3.go

    	}
    }
    
    // Issue #63378.
    func testint4() {
    	for i := range -1 {
    		_ = i
    		panic("must not be executed")
    	}
    }
    
    // Issue #64471.
    func testint5() {
    	for i := range 'a' {
    		var _ *rune = &i // ensure i has type rune
    	}
    }
    
    func main() {
    	testint1()
    	testint2()
    	testint3()
    	testint4()
    	testint5()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 17:20:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. test/rename.go

    			float64 +
    			imag +
    			int +
    			int8 +
    			int16 +
    			int32 +
    			int64 +
    			len +
    			make +
    			new +
    			nil +
    			panic +
    			print +
    			println +
    			real +
    			recover +
    			rune +
    			string +
    			true +
    			uint +
    			uint8 +
    			uint16 +
    			uint32 +
    			uint64 +
    			uintptr +
    			iota
    	if n != NUM*(NUM-1)/2 {
    		fmt.Println("BUG: wrong n", n, NUM*(NUM-1)/2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
Back to top