Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Brunet (0.17 sec)

  1. doc/go1.17_spec.html

    </pre>
    </li>
    
    <li>
    Converting a slice of runes to a string type yields
    a string that is the concatenation of the individual rune values
    converted to strings.
    
    <pre>
    string([]rune{0x767d, 0x9d6c, 0x7fd4})   // "\u767d\u9d6c\u7fd4" == "白鵬翔"
    string([]rune{})                         // ""
    string([]rune(nil))                      // ""
    
    type MyRunes []rune
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    		// add underscore if last letter is capital letter
    		// add underscore when previous letter is lowercase
    		// add underscore when next letter is lowercase
    		if (i != 0 || i == l-1) && ((i > 0 && rune(camel[i-1]) >= 'a') ||
    			(i < l-1 && rune(camel[i+1]) >= 'a')) {
    			b.WriteRune('_')
    		}
    		b.WriteRune(v + 'a' - 'A')
    	}
    	return b.String()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    ## Changelog since v1.29.0
    
    ## Changes by Kind
    
    ### Deprecation
    
    - kubectl: Removed the deprecated flag `prune-whitelist` for apply. Please use the flag `prune-allowlist` instead.
       ([#120246](https://github.com/kubernetes/kubernetes/pull/120246), [@pacoxu](https://github.com/pacoxu))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    							w.Header().Set(k, v)
    						}
    
    						if opts.PartNumber > 0 && strings.Contains(ci.ETag, "-") {
    							w.Header()[xhttp.AmzMpPartsCount] = []string{
    								strings.TrimLeftFunc(ci.ETag, func(r rune) bool {
    									return !unicode.IsNumber(r)
    								}),
    							}
    						}
    
    						// For providing ranged content
    						start, rangeLen, err := rs.GetOffsetLength(ci.Size)
    						if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

      - [stable] `kubectl apply` is now able to delete resources you no longer need with `--prune` ([kubernetes/features#128](https://github.com/kubernetes/enhancements/issues/128))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    to kill it in a day or two:  wouldn't it be murder to leave it
    behind?'  She said the last words out loud, and the little thing
    grunted in reply (it had left off sneezing by this time).  `Don't
    grunt,' said Alice; `that's not at all a proper way of expressing
    yourself.'
    
      The baby grunted again, and Alice looked very anxiously into
    its face to see what was the matter with it.  There could be no
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    to kill it in a day or two:  wouldn't it be murder to leave it
    behind?'  She said the last words out loud, and the little thing
    grunted in reply (it had left off sneezing by this time).  `Don't
    grunt,' said Alice; `that's not at all a proper way of expressing
    yourself.'
    
      The baby grunted again, and Alice looked very anxiously into
    its face to see what was the matter with it.  There could be no
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    botanical.museum
    botanicalgarden.museum
    botanicgarden.museum
    botany.museum
    brandywinevalley.museum
    brasil.museum
    bristol.museum
    british.museum
    britishcolumbia.museum
    broadcast.museum
    brunel.museum
    brussel.museum
    brussels.museum
    bruxelles.museum
    building.museum
    burghof.museum
    bus.museum
    bushey.museum
    cadaques.museum
    california.museum
    cambridge.museum
    can.museum
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top