Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 509 for replaceable (0.17 sec)

  1. src/runtime/ehooks_test.go

    		}
    
    		bt := ""
    		if bmode != "" {
    			bt = " bmode: " + bmode
    		}
    		for _, s := range scenarios {
    			cmd := exec.Command(exe, []string{"-mode", s.mode}...)
    			out, _ := cmd.CombinedOutput()
    			outs := strings.ReplaceAll(string(out), "\n", " ")
    			outs = strings.TrimSpace(outs)
    			if s.expected != "" && s.expected != outs {
    				t.Fatalf("failed%s mode %s: wanted %q\noutput:\n%s", bt,
    					s.mode, s.expected, outs)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/AsmClassGenerator.java

            visitor = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES);
            generatedTypeName = targetType.getName() + classNameSuffix;
            generatedType = Type.getType("L" + generatedTypeName.replaceAll("\\.", "/") + ";");
        }
    
        public ClassWriter getVisitor() {
            return visitor;
        }
    
        public Class<?> getTargetType() {
            return targetType;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    			iptables := NewIptablesRuleBuilder(builderConfig)
    			tt.config(iptables)
    			var goldenNameV4 string
    			var goldenNameV6 string
    			if tt.sharedGolden {
    				goldenName := strings.ReplaceAll(tt.name, "-v4", "")
    				goldenName = strings.ReplaceAll(goldenName, "-v6", "")
    				goldenNameV4 = goldenName
    				goldenNameV6 = goldenName
    			} else {
    				goldenNameV4 = tt.name + "-v4"
    				goldenNameV6 = tt.name + "-v6"
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

        String getValue() {
            StringBuilder normalised = new StringBuilder()
    
            String eol = SystemProperties.instance.lineSeparator
            boolean inStackTrace = false
            new StringTokenizer(result.toString().replaceAll(eol, '\n'), '\n', true).each { String line ->
                if (line == '\n') {
                    if (!inStackTrace) {
                        normalised.append('\n')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/prometheus/kube.go

    	if err != nil {
    		return "", err
    	}
    	yaml := string(yamlBytes)
    	// For faster tests, drop scrape interval
    	yaml = strings.ReplaceAll(yaml, "scrape_interval: 15s", "scrape_interval: 5s")
    	yaml = strings.ReplaceAll(yaml, "scrape_timeout: 10s", "scrape_timeout: 5s")
    	return yaml, nil
    }
    
    func installPrometheus(ctx resource.Context, ns string) error {
    	yaml, err := getPrometheusYaml()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputCleaner.java

            if (!Boolean.parseBoolean(System.getProperty(CLEAN_CONFIGURATION_CACHE_OUTPUT))) {
                return commandOutput;
            }
            return CONFIGURATION_CACHE_OUTPUT.matcher(commandOutput).replaceAll("");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioSolution.java

     *              solutionFile.withContent { TextProvider content -&gt;
     *                  content.asBuilder().insert(0, "# GENERATED FILE: DO NOT EDIT\n")
     *                  content.text = content.text.replaceAll("HideSolutionNode = FALSE", "HideSolutionNode = TRUE")
     *              }
     *          }
     *      }
     *  }
     * </pre>
     */
    @Incubating
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/util/internal/AntUtil.java

         * via {@link groovy.ant.AntBuilder}.
         * @param string to mask
         * @return The masked String
         */
        public static String maskFilename(String string) {
                return string.replaceAll("\\$", "\\$\\$");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:48 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

         */
        default String getId() {
            return convertToId(getDisplayName());
        }
    
        static String convertToId(String displayName) {
            return displayName.replaceAll("[^a-zA-Z0-9]", "-");
        }
    
        /**
         * A human consumable display name for this performance test.
         */
        default String getDisplayName() {
            return getExperiment().getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskOutputIntegrationTest.groovy

                "buildInvocationId",
                "creationTime",
                "executionTime",
            )
            metadata.identity == ":compileJava"
            metadata.type == TaskExecution.name.replaceAll(/\$/, ".")
            metadata.gradleVersion == GradleVersion.current().version
        }
    
        private Properties readMetadata() {
            def cacheKey = cacheOperations.getCacheKeyForTask(":compileJava")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 17:51:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top