Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for caseSensitive (0.15 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseInsensitiveVfsRelativePathTest.groovy

            compareChars(char2, char1) == Character.compare(char2, char1)
            !equalChars(char1, char2, CASE_SENSITIVE)
            equalChars(char1, char2, CASE_INSENSITIVE) == (caseInsensitiveResult == 0)
            !equalChars(char2, char1, CASE_SENSITIVE)
            equalChars(char2, char1, CASE_INSENSITIVE) == (caseInsensitiveResult == 0)
    
            where:
            left | right | result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchy.java

            this.rootNode = rootNode;
        }
    
        public static SnapshotHierarchy empty(CaseSensitivity caseSensitivity) {
            switch (caseSensitivity) {
                case CASE_SENSITIVE:
                    return EmptySnapshotHierarchy.CASE_SENSITIVE;
                case CASE_INSENSITIVE:
                    return EmptySnapshotHierarchy.CASE_INSENSITIVE;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/testdata/describe/http_config.json

                      "*"
                    ],
                    "routes": [
                      {
                        "match": {
                          "path": "/productpage",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStepTest.groovy

    import spock.lang.Specification
    
    class HasPrefixAndSuffixPatternStepTest extends Specification {
        static final boolean CASE_SENSITIVE = true;
        static final boolean CASE_INSENSITIVE = false;
    
        def "matches name case sensitive"() {
            def step = new HasPrefixAndSuffixPatternStep("pre", "suf", CASE_SENSITIVE)
    
            expect:
            step.matches("pre-suf")
            step.matches("presufsuf")
            step.matches("presuf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot
    
    import spock.lang.Specification
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class VfsRelativePathTest extends Specification {
    
        def "convert absolute path '#absolutePath' to relative path '#relativePath'"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/CaseSensitivity.java

     * since it seems that the methods can be better inlined by the JIT compiler if they are static.
     */
    public enum CaseSensitivity {
        CASE_SENSITIVE,
        CASE_INSENSITIVE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1011 bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

          "virtual_hosts": [
           {
            "name": "httpbin.example.com:80",
            "domains": [
             "httpbin.example.com"
            ],
            "routes": [
             {
              "match": {
               "case_sensitive": true,
               "path_separated_prefix": "/get"
              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

           {
            "name": "httpbin.example.com:80",
            "domains": [
             "httpbin.example.com"
            ],
            "routes": [
             {
              "match": {
               "prefix": "/get",
               "case_sensitive": true
              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystemTest.groovy

    import spock.lang.Specification
    
    class WatchingNotSupportedVirtualFileSystemTest extends Specification {
        def emptySnapshotHierarchy = DefaultSnapshotHierarchy.empty(CaseSensitivity.CASE_SENSITIVE)
        def nonEmptySnapshotHierarchy = Stub(SnapshotHierarchy) {
            empty() >> emptySnapshotHierarchy
        }
        def watchingNotSupportedVfs = new WatchingNotSupportedVirtualFileSystem(nonEmptySnapshotHierarchy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

    import java.util.List;
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_INSENSITIVE;
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE;
    
    public class LauncherServices extends AbstractGradleModuleServices {
        @Override
        public void registerGlobalServices(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top