Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for _abc (3.01 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixPatternStepTest.groovy

            def step = new HasPrefixPatternStep(".abc", false)
    
            expect:
            step.matches(".abc")
            step.matches(".ABC")
            step.matches(".Abc")
            step.matches(".aBCD")
            !step.matches(".A")
            !step.matches(".Ab")
            !step.matches(".BCD")
            !step.matches("ABC")
            !step.matches("")
            !step.matches("something else")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TextUtilTest.java

            assertEquals("aaa bbb", normalizeText("aaa \u00a0 bbb", 100, -1, -1, false));
            assertEquals("123 abc", normalizeText(" 123 abc ", 100, -1, -1, false));
            assertEquals("123 あいう", normalizeText(" 123 あいう ", 100, -1, -1, false));
            assertEquals("123 abc", normalizeText(" 123\nabc ", 100, -1, -1, false));
            assertEquals("1234567890 1234567890", normalizeText("1234567890 1234567890", 100, -1, -1, false));
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            def step1 = PatternStepFactory.getStep("*abc", true);
            step1 instanceof HasSuffixPatternStep
            step1.suffix == "abc"
    
            step1.matches("abc")
            step1.matches("thing.abc")
            !step1.matches("thing.java")
    
            and:
            def step2 = PatternStepFactory.getStep("**abc", true);
            step2 instanceof HasSuffixPatternStep
            step2.suffix == "abc"
    
            step2.matches("abc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/lookup1.go

    	_ = s.ABC // ERROR "s.ABC undefined (type struct{x int; aBc int} has no field or method ABC, but does have field aBc)"
    }
    
    func _() {
    	type S struct {
    		x int
    	}
    	var s S
    	_ = s.x
    	_ = s /* ERROR "invalid operation: cannot call non-function s.x (variable of type int)" */ .x()
    	_ = s.X // ERROR "s.X undefined (type S has no field or method X, but does have field x)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/internal/coerce/StringToEnumTransformerTest.groovy

            where:
            types              | args           | transformed           | desc
            [TestEnum]         | ["abc"]        | [TestEnum.ABC]        | "one arg"
            [TestEnum, String] | ["abc", "abc"] | [TestEnum.ABC, "abc"] | "two args"
        }
    
        def "returns original args when no transformation is required - #desc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${abc.xyz}";
            assertEquals(value, ResourceUtil.resolve(value));
    
            System.setProperty("abc.xyz", "789");
    
            value = "${abc.xyz}";
            assertEquals("789", ResourceUtil.resolve(value));
    
            value = "${abc}${abc.xyz}";
            assertEquals("123789", ResourceUtil.resolve(value));
    
            value = "xxx${abc.xyz}zzz";
            assertEquals("xxx789zzz", ResourceUtil.resolve(value));
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      hosts:
      - abc.foo.example.com
      http:
      - match:
        - uri:
            prefix: /abc-foo-example-com
        name: gateway-conformance-infra.attaches-to-abc-foo-example-com-with-hostname-intersection.0
        route:
        - destination:
            host: infra-backend-v1.gateway-conformance-infra.svc.domain.suffix
            port:
              number: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

    kind: HTTPRoute
    metadata:
      name: attaches-to-abc-foo-example-com-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: abc-foo-example-com
      hostnames:
        - "bar.com" # doesn't match abc-foo-example-com listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/convert/StringConversionUtilTest.java

            assertEquals("", StringConversionUtil.fromWindowsMapping(""));
            assertEquals("abc 123", StringConversionUtil.fromWindowsMapping("abc 123"));
            assertEquals("abc\uFF5E\u2225\uFF0D\uFFE0\uFFE1\uFFE2",
                    StringConversionUtil.fromWindowsMapping("abc\u301C\u2016\u2212\u00A2\u00A3\u00AC"));
        }
    
        /**
         * @throws Exception
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. tests/integration/security/normalization_test.go

    						{"/app/%2f", "/app/"},
    						{"/app%2f/", "/app/"},
    						{"/xyz%30..//abc", "/xyz0../abc"},
    						{"/app/%2E./admin", "/admin"},
    						{`/app\admin`, `/app/admin`},
    						{`/app/\/\/\admin`, `/app/admin`},
    						{`/%2Fapp%5cadmin%5Cabc`, `/app/admin/abc`},
    						{`/%5Capp%2f%5c%2F%2e%2e%2fadmin%5c\abc`, `/app/admin/abc`},
    						{`/app//../admin`, `/app/admin`},
    						{`/app//../../admin`, `/admin`},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top