Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for AA (0.05 sec)

  1. src/text/tabwriter/tabwriter.go

    // forms a cell but that cell is not part of an aligned column.
    // For instance, in this example (where | stands for a horizontal tab):
    //
    //	aaaa|bbb|d
    //	aa  |b  |dd
    //	a   |
    //	aa  |cccc|eee
    //
    // the b and c are in distinct columns (the b column is not contiguous
    // all the way). The d and e are not in a column at all (there's no
    // terminating tab, nor would the column be contiguous).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertTrue(StringUtil.endsWithIgnoreCase("aaa_hoge", "HOge"));
            assertFalse(StringUtil.endsWithIgnoreCase("setHogeaa", "Aaa"));
            assertFalse(StringUtil.endsWithIgnoreCase("aa", "Aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testStartsWithIgnoreCase() throws Exception {
            assertTrue(StringUtil.startsWithIgnoreCase("isHoge", "is"));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	                       b9:af:ce:05:9d:82:a2:98:a9:15:40:8b:ff:a2:5c:
    	                       72:53:e8:d0:af:73:c6:76:4d:c7:6a:6e:9f:5d:a7:
    	                       e2:f6:aa:6a:18:2b:c3:ee:3b:64:19:16:5d:94:0b:
    	                       f2:f7:90:43:9a:5d:ce:7e:07:4d:b9:df:be:f0:39:
    	                       98:a4:41:eb:d3:17:90:12:d9:bc:d7:7f:a4:66:98:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/regexp/example_test.go

    	fmt.Println(re.FindAllString("paranormal", 2))
    	fmt.Println(re.FindAllString("graal", -1))
    	fmt.Println(re.FindAllString("none", -1))
    	// Output:
    	// [ar an al]
    	// [ar an]
    	// [aa]
    	// []
    }
    
    func ExampleRegexp_FindAllStringSubmatch() {
    	re := regexp.MustCompile(`a(x*)b`)
    	fmt.Printf("%q\n", re.FindAllStringSubmatch("-ab-", -1))
    	fmt.Printf("%q\n", re.FindAllStringSubmatch("-axxb-", -1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            wholeTypeFir: FirResolvedTypeRef,
        ): ClassId? {
            val qualifierToResolve = qualifier.parent as KtUserType
            // FIXME make it work with generics in functional types (like () -> AA.BB<CC, AA.DD>)
            val wholeType = when (val psi = wholeTypeFir.psi) {
                is KtUserType -> psi
                is KtTypeReference -> psi.typeElement?.unwrapNullability() as? KtUserType
                else -> null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			testRuntimeCELCostBudget: 3,
    			expectRemainingBudget:    pointer.Int64(0),
    		},
    		{
    			name: "Extended library cost: join",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "size(['aa', 'bb', 'cc', 'd', 'e', 'f', 'g', 'h', 'i', 'j'].join(' ')) > 0",
    				},
    			},
    			attributes:               newValidAttribute(nil, false),
    			hasParamKind:             false,
    			exceedBudget:             false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    		},
    		{
    			name:               "join with separator",
    			expr:               "['aa', 'bb', 'cc', 'd', 'e', 'f', 'g', 'h', 'i', 'j'].join(' ')",
    			expectEsimatedCost: checker.CostEstimate{Min: 11, Max: 23},
    			expectRuntimeCost:  15,
    		},
    		{
    			name:               "join",
    			expr:               "['aa', 'bb', 'cc', 'd', 'e', 'f', 'g', 'h', 'i', 'j'].join()",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/OrderingTest.java

        ImmutableList<String> empty = ImmutableList.of();
        ImmutableList<String> a = ImmutableList.of("a");
        ImmutableList<String> aa = ImmutableList.of("a", "a");
        ImmutableList<String> ab = ImmutableList.of("a", "b");
        ImmutableList<String> b = ImmutableList.of("b");
    
        Helpers.testComparator(lexy, empty, a, aa, ab, b);
    
        new EqualsTester()
            .addEqualityGroup(lexy, ordering.lexicographical())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  9. src/unicode/letter_test.go

    		}
    	}
    }
    
    var simpleFoldTests = []string{
    	// SimpleFold(x) returns the next equivalent rune > x or wraps
    	// around to smaller values.
    
    	// Easy cases.
    	"Aa",
    	"δΔ",
    
    	// ASCII special cases.
    	"KkK",
    	"Ssſ",
    
    	// Non-ASCII special cases.
    	"ρϱΡ",
    	"ͅΙιι",
    
    	// Extra special cases: has lower/upper but no case fold.
    	"İ",
    	"ı",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. src/fmt/scan.go

    	case '0':
    		return false
    	case '1':
    		return true
    	case 't', 'T':
    		if s.accept("rR") && (!s.accept("uU") || !s.accept("eE")) {
    			s.error(errBool)
    		}
    		return true
    	case 'f', 'F':
    		if s.accept("aA") && (!s.accept("lL") || !s.accept("sS") || !s.accept("eE")) {
    			s.error(errBool)
    		}
    		return false
    	}
    	return false
    }
    
    // Numerical elements
    const (
    	binaryDigits      = "01"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top