Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for Zzzz (0.21 sec)

  1. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            assertEquals(value, ResourceUtil.resolve(value));
    
            System.setProperty("abc", "123");
    
            value = "${abc}";
            assertEquals("123", ResourceUtil.resolve(value));
    
            value = "xxx${abc}zzz";
            assertEquals("xxx123zzz", ResourceUtil.resolve(value));
    
            value = "${abc.xyz}";
            assertEquals(value, ResourceUtil.resolve(value));
    
            System.setProperty("abc.xyz", "789");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            toolchain.javaHome.toString() == systemSpecificAbsolutePath(expectedPath)
    
            where:
            versionToFind | expectedPath
            7             | "/path/7.9"
            8             | "/path/8.0.zzz.foo" // zzz resolves to a real tool version 999
            14            | "/path/14.0.2+12"
        }
    
        def "uses j9 toolchain if requested"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. cni/test/testdata/expected/minikube_cni.conflist.expected

          "cni_event_address": "/tmp/cnieventfoo",
          "dns": {},
          "ipam": {},
          "kubernetes": {
            "exclude_namespaces": [
              "istio-system"
            ],
            "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig"
          },
          "log_uds_address": "",
          "name": "istio-cni",
          "plugin_log_level": "debug",
          "type": "istio-cni"
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 875 bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            def targetDir = tmpDir.createDir("target")
            def tooManyRange = (1..(DefaultDeleter.MAX_REPORTED_PATHS + 10))
            def nonDeletableFiles = tooManyRange.collect { targetDir.createFile("zzz-${it}-zzz.txt") }
            FileTime.makeOld(nonDeletableFiles + targetDir)
    
            and: 'a deleter that cannot delete, records deletion requests and creates new files'
            def triedToDelete = [] as Set<File>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. cni/test/testdata/expected/YYY-istio-cni.conf

      "ipam": {},
      "dns": {},
      "plugin_log_level": "debug",
      "log_uds_address": "",
      "cni_event_address": "/tmp/cnieventfoo",
      "ambient_enabled": false,
      "kubernetes": {
        "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig",
        "exclude_namespaces": [
          "istio-system"
        ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 367 bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/Collections2Test.java

        suite.addTest(testsForTransform());
        suite.addTestSuite(Collections2Test.class);
        return suite;
      }
    
      static final Predicate<@Nullable String> NOT_YYY_ZZZ =
          input -> !"yyy".equals(input) && !"zzz".equals(input);
    
      static final Predicate<String> LENGTH_1 = input -> input.length() == 1;
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      private static Test testsForFilter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        filtered.put("a", 1);
        filtered.put("b", 2);
        assertEquals(ImmutableMap.of("a", 1, "b", 2), filtered);
    
        try {
          filtered.putAll(ImmutableMap.of("c", 3, "zzz", 4, "b", 5));
          fail();
        } catch (IllegalArgumentException expected) {
        }
    
        assertEquals(ImmutableMap.of("a", 1, "b", 2), filtered);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_issue59571.txt

    	Alias16 = SliceFlag[[16]int]
    	Alias17 = SliceFlag[[17]int]
    	Alias18 = SliceFlag[[18]int]
    	Alias19 = SliceFlag[[19]int]
    	Alias20 = SliceFlag[[20]int]
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:54:38 UTC 2023
    - 907 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

      arrayOf(
        // HTTP formats required by RFC2616 but with any timezone:
        // RFC 822, updated by RFC 1123 with any TZ.
        "EEE, dd MMM yyyy HH:mm:ss zzz",
        // RFC 850, obsoleted by RFC 1036 with any TZ.
        "EEEE, dd-MMM-yy HH:mm:ss zzz",
        // ANSI C's asctime() format
        "EEE MMM d HH:mm:ss yyyy",
        // Alternative formats:
        "EEE, dd-MMM-yyyy HH:mm:ss z",
        "EEE, dd-MMM-yyyy HH-mm-ss z",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/AttributeContainerResolutionIntegrationTest.groovy

            buildFile << """
                configurations {
                    conf {
                        attributes {
                            def otherAttribute = Attribute.of("zzz", Named)
                            attributeProvider(Attribute.of("aaa", Named), provider {
                                assert getAttribute(otherAttribute).name == "other"
                                objects.named(Named, "value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top