Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for Zzzz (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            where:
            versionToFind              | expectedPath
            JavaLanguageVersion.of(7)  | "/path/7.9"
            JavaLanguageVersion.of(8)  | "/path/8.0.zzz.foo" // zzz resolves to a real tool version 999
            JavaLanguageVersion.of(14) | "/path/14.0.2+12"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17195")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            given:
            server.start()
            buildFile << """
                @ParallelizableTask
                class ParTask extends DefaultTask {
                    @TaskAction zzz() { ${server.callFromBuildUsingExpression('name')} }
                }
    
                task para1(type:ParTask)
                task para2(type:ParTask)
                task parallelTasks(dependsOn:[para1,para2])
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. 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)
Back to top