Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 509 for replaceable (0.21 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    // The spec is created lazily from the CRD object on request.
    // The mergedVersionSpec is only created on instantiation and is never
    // changed. crdCache is a cached.Replaceable and updates are thread
    // safe. Thus, no lock is needed to protect this struct.
    type specCache struct {
    	crdCache          cached.LastSuccess[*apiextensionsv1.CustomResourceDefinition]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    			`<h3><table><thead>...</h3>`,
    		},
    		{
    			"bad dynamic element name",
    			// Dynamic element names are typically used to switch
    			// between (thead, tfoot, tbody), (ul, ol), (th, td),
    			// and other replaceable sets.
    			// We do not currently easily support (ul, ol).
    			// If we do change to support that, this test should
    			// catch failures to filter out special tag names which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/telemetry/telemetry.go

    	prefix := strings.ReplaceAll(statPattern, serviceStatPattern, shortHostName(host, attributes))
    	prefix = strings.ReplaceAll(prefix, serviceFQDNStatPattern, host)
    	prefix = strings.ReplaceAll(prefix, subsetNameStatPattern, subset)
    	prefix = strings.ReplaceAll(prefix, serviceTargetPortStatPattern, strconv.Itoa(targetPort))
    	prefix = strings.ReplaceAll(prefix, servicePortStatPattern, strconv.Itoa(port.Port))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

            return commandOutput
                .replaceAll("Tool chain '[\\w+\\-]+' \\([\\w\\- ]+\\)","Tool chain 'clang' (Clang)")
                .replaceAll("platform '[\\w+\\-]+'","platform 'current'")
                .replaceAll("(build/libs/.+/shared/(\\w+))\\.so") { "${it[1]}.dylib" }
                .replaceAll("((build/libs/.+/shared/)(\\w+))\\.dll") { "${it[2]}lib${it[3]}.dylib" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceAllTester.java

      public void testReplaceAll_unsupported() {
        try {
          getMap()
              .replaceAll(
                  (K k, V v) -> {
                    int index = keys().asList().indexOf(k);
                    return values().asList().get(index + 1);
                  });
          fail(
              "replaceAll() should throw UnsupportedOperation if a map does "
                  + "not support it and is not empty.");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/ListReplaceAllTester.java

      @ListFeature.Require(SUPPORTS_SET)
      public void testReplaceAll() {
        getList().replaceAll(e -> samples.e3());
        expectContents(Collections.nCopies(getNumElements(), samples.e3()));
      }
    
      @ListFeature.Require(SUPPORTS_SET)
      public void testReplaceAll_changesSome() {
        getList().replaceAll(e -> e.equals(samples.e0()) ? samples.e3() : e);
        E[] expected = createSamplesArray();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 28 16:27:15 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

                .replaceAll(/Calculating task graph as no cached configuration is available for tasks: ${task}.*\n/, '')
                .replaceAll(/Configuration cache entry stored.\n/, '')
    
            when:
            configurationCacheRun(task, *options)
            def secondRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Reusing configuration cache.\n/, '')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizer.groovy

                // Replace the value with 11 for consistent testing
                "\$111\$2"
            )
                .replaceAll("org\\.gradle\\.jvm\\.version[ ]'[0-9]+'", "org.gradle.jvm.version '11'")
                .replaceAll("'org\\.gradle\\.jvm\\.version' with value '[0-9]+'", "'org.gradle.jvm.version' with value '11'")
                .replaceAll("compatib(le|ility) with Java [0-9]+", "compatib\$1 with Java 11")
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

            normalizedOutput
                .replaceAll(/Received \d+ file system events .*\n/, '')
                .replaceAll(/Spent \d+ ms processing file system events since last build\n/, '')
                .replaceAll(/Spent \d+ ms registering watches for file system events\n/, '')
                .replaceAll(/Virtual file system .*\n/, '')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationProblemRenderer.java

         * a better way to display multiline deprecation warnings
         */
        public static String convertToSingleLine(String message) {
            return message.replaceAll("(\\r?\\n *)+", ". ")
                .replaceAll("[.]+", ".")
                .replaceAll("[ ]+", " ")
                .replaceAll(": ?[. ]", ": ");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top