Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 228 for Upper (0.36 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

    @SuppressWarnings("StringCaseLocaleUsage")
    public class TextUtil {
        private static final Pattern WHITESPACE = Pattern.compile("\\s*");
        private static final Pattern UPPER_CASE = Pattern.compile("(?=\\p{Upper})");
        private static final Joiner KEBAB_JOINER = Joiner.on("-");
        private static final Function<String, String> TO_LOWERCASE = new Function<String, String>() {
            @Override
            public String apply(String input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Ascii.java

       *
       * <p>Note however that this method does not always behave identically to expressions such as:
       *
       * <ul>
       *   <li>{@code string.toUpperCase().equals("UPPER CASE ASCII")}
       *   <li>{@code string.toLowerCase().equals("lower case ascii")}
       * </ul>
       *
       * <p>due to case-folding of some non-ASCII characters (which does not occur in {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/trace/pprof.go

    }
    
    // pprofMaxStack is the extent of the deduplication we're willing to do.
    //
    // Because slices aren't comparable and we want to leverage maps for deduplication,
    // we have to choose a fixed constant upper bound on the amount of frames we want
    // to support. In practice this is fine because there's a maximum depth to these
    // stacks anyway.
    const pprofMaxStack = 128
    
    // stackMap is a map of trace.Stack to some value V.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/debug/dwarf/type.go

    			switch kid.Tag {
    			case TagSubrangeType:
    				count, ok := kid.Val(AttrCount).(int64)
    				if !ok {
    					// Old binaries may have an upper bound instead.
    					count, ok = kid.Val(AttrUpperBound).(int64)
    					if ok {
    						count++ // Length is one more than upper bound.
    					} else if len(dims) == 0 {
    						count = -1 // As in x[].
    					}
    				}
    				dims = append(dims, count)
    			case TagEnumerationType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - Unused portions of AuxInt are filled by sign-extending the used portion.
    //  - *const instructions may use a constant larger than the instruction can encode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - *const instructions may use a constant larger than the instruction can encode.
    //    In this case the assembler expands to multiple instructions and uses tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - *const instructions may use a constant larger than the instruction can encode.
    //    In this case the assembler expands to multiple instructions and uses tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion_test.go

    		{8888, "mysql-test", nil, corev1.ProtocolTCP, protocol.MySQL},
    		{8888, "tcp", &http, corev1.ProtocolTCP, protocol.HTTP},
    	}
    
    	// Create the list of cases for all of the names in both upper and lowercase.
    	cases := make([]protocolCase, 0, len(protocols)*2)
    	for _, p := range protocols {
    		name := p.name
    
    		p.name = strings.ToLower(name)
    		cases = append(cases, p)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    //   It depends on how big is the argument, and we have no control over this, so let's be pessimistic.
                    // * IFEQ itself is 3 bytes. However, ASM's CodeSizeEvaluator gives an upper bound of 8, because offsets
                    //   that don't fit in SHORT type have to be encoded differently. We're unlikely to encounter such offsets in this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. docs/fr/docs/python-types.md

    À un certain point vous auriez commencé la définition de la fonction, vous aviez les paramètres prêts.
    
    Mais vous aviez besoin de "cette méthode qui convertit la première lettre en majuscule".
    
    Était-ce `upper` ? `uppercase` ? `first_uppercase` ? `capitalize` ?
    
    Vous essayez donc d'utiliser le vieil ami du programmeur, l'auto-complétion de l'éditeur.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top