Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 509 for replaceable (0.19 sec)

  1. src/net/http/internal/testcert/testcert.go

    Ckq9yzvP/ib05rvgbvrne00YeOxqJ9gtTrzgh7koqJyX1L4NwdkEza4ilDWpucn0
    xiUZS4SoaJq6ZvcBYS62Yr1t8n09iG47YL8ibgtmH3L+svaotvpVxVK+d7BLevA/
    ZboOWVe3icTy64BT3OQhmg==
    -----END RSA TESTING KEY-----`))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 08 00:24:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizer.groovy

                ? normalizeScalaOutput(output)
                : output
        }
    
        private String normalizeScalaOutput(String output) {
            PATTERN.matcher(output)
                .replaceAll("")
                .with {
                    // remove starting empty line
                    it.startsWith('\n')
                        ? it.substring(1)
                        : it
                }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/zipkin/kube.go

    func installServiceEntry(ctx resource.Context, ns, ingressAddr string) error {
    	// Setup remote access to zipkin in cluster
    	yaml := strings.ReplaceAll(remoteZipkinEntry, "{INGRESS_DOMAIN}", ingressAddr)
    	err := ctx.ConfigIstio().YAML(ns, yaml).Apply()
    	if err != nil {
    		return err
    	}
    	yaml = strings.ReplaceAll(extServiceEntry, "{INGRESS_DOMAIN}", ingressAddr)
    	err = ctx.ConfigIstio().YAML(ns, yaml).Apply()
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdRelocationIntegrationTest.groovy

                    source "src/main/java"
                }
            """
        }
    
        @Override
        protected extractResultsFrom(TestFile projectDir) {
            projectDir.file("build/reports/pmd/pmd.xml").text
                .replaceAll(/timestamp=".*?"/, 'timestamp="[NUMBER]"')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/integtests/fixtures/jvm/JvmSourceFile.java

        }
    
        public String getFullPath() {
            return path.isEmpty() ? name : path + "/" + name;
        }
    
        public JvmSourceFile getClassFile() {
            return new JvmSourceFile(path, name.replaceAll("(\\.java|\\.scala)", ".class"), null);
        }
    
        public TestFile writeToDir(TestFile base) {
            TestFile file = base.file(path, name);
            writeToFile(file);
            return file;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/debug/mod_test.go

    package debug_test
    
    import (
    	"reflect"
    	"runtime/debug"
    	"strings"
    	"testing"
    )
    
    // strip removes two leading tabs after each newline of s.
    func strip(s string) string {
    	replaced := strings.ReplaceAll(s, "\n\t\t", "\n")
    	if len(replaced) > 0 && replaced[0] == '\n' {
    		replaced = replaced[1:]
    	}
    	return replaced
    }
    
    func FuzzParseBuildInfoRoundTrip(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. tests/integration/security/normalization_test.go

    		output := input
    		if supportedPercentEncode(i) {
    			var err error
    			output, err = url.PathUnescape(input)
    			switch i {
    			case 0x5c:
    				output = strings.ReplaceAll(output, `\`, `/`)
    			case 0x7e:
    				output = strings.ReplaceAll(output, `%7e`, `~`)
    			}
    			if err != nil {
    				t.Errorf("failed to unescape percent encoded path %s: %v", input, err)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/teststdio/stdio_test.go

    		t.Run(file, func(t *testing.T) {
    			cmd := exec.Command("go", "run", file)
    			got, err := cmd.CombinedOutput()
    			if err != nil {
    				t.Fatalf("%v: %s\n%s", cmd, err, got)
    			}
    			got = bytes.ReplaceAll(got, []byte("\r\n"), []byte("\n"))
    			want, err := os.ReadFile(wantFile)
    			if err != nil {
    				t.Fatal("reading golden output:", err)
    			}
    			if !bytes.Equal(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptClassPathIntegrationTest.groovy

    dependencies {
       compile files('foo.jar') { environmentMarkers('sss') }
    }
    
    task foo {
       doLast {
          bar()
       }
    }
            '''
            run 'foo'
    
            when:
            buildFile.text = buildFile.text.replaceAll('Original bar', 'New bar')
            succeeds 'foo'
    
            then:
            outputDoesNotContain('Original bar')
        }
    
        def 'buildscript classpath has proper usage attribute'() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:48:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestFrameworkIntegrationTest.groovy

        }
    
        @Override
        void renameTests() {
            def newTest = file("src/test/java/NewTest.java")
            file('src/test/java/SomeOtherTest.java').renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "test"
        }
    
        @Override
        String getPassingTestCaseName() {
            return "pass"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top