Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for SEP (0.04 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

        }
    
        def "log standard out event"() {
            createLogger(LogLevel.INFO)
    
            when:
            logger.logEvent(methodDescriptor, TestLogEvent.STANDARD_OUT, "this is a${sep}standard out${sep}event")
    
            then:
            textOutputFactory.toString() == "{TestEventLogger}{INFO}${sep}OuterSuiteClass > InnerSuiteClass > TestClass > a test STANDARD_OUT${sep}this is a${sep}standard out${sep}event"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/internal/bytealg/index_ppc64x.s

    	// s: string we are searching
    	// sep: string to search for
    	// R3=&s[0], R4=len(s)
    	// R5=&sep[0], R6=len(sep)
    	// R14=&ret (index where sep found)
    	// R7=working addr of string
    	// R16=index value 16
    	// R17=index value 17
    	// R18=index value 18
    	// R19=index value 1
    	// R26=LASTBYTE of string
    	// R27=LASTSTR last start byte to compare with sep
    	// R8, R9 scratch
    	// V0=sep left justified zero fill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  3. src/internal/bytealg/bytealg.go

    func HashStr[T string | []byte](sep T) (uint32, uint32) {
    	hash := uint32(0)
    	for i := 0; i < len(sep); i++ {
    		hash = hash*PrimeRK + uint32(sep[i])
    	}
    	var pow, sq uint32 = 1, PrimeRK
    	for i := len(sep); i > 0; i >>= 1 {
    		if i&1 != 0 {
    			pow *= sq
    		}
    		sq *= sq
    	}
    	return hash, pow
    }
    
    // HashStrRev returns the hash of the reverse of sep and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            where:
            path              | startsWithPath || result
            ""                | ""             || true
            "a${SEP}a${SEP}a" | "a${SEP}b"     || false
            "a${SEP}a"        | "a${SEP}a"     || true
            "a${SEP}a${SEP}a" | "a${SEP}a"     || true
            "a${SEP}ab"       | "a${SEP}a"     || false
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/util/iptables/testing/parse_test.go

    			rule: `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment ns1/svc1:p80 -m recent --name KUBE-SEP-SXIVWICOYRO3J4NJ --rcheck --seconds 10800 --reap -j KUBE-SEP-SXIVWICOYRO3J4NJ`,
    			parsed: &Rule{
    				Raw:             `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment ns1/svc1:p80 -m recent --name KUBE-SEP-SXIVWICOYRO3J4NJ --rcheck --seconds 10800 --reap -j KUBE-SEP-SXIVWICOYRO3J4NJ`,
    				Chain:           iptables.Chain("KUBE-SVC-XPGD46QRK7WJZT7O"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/os/tempfile_test.go

    	}
    	defer RemoveAll(tmpDir)
    
    	const sep = string(PathSeparator)
    	tests := []struct {
    		pattern string
    		wantErr bool
    	}{
    		{"ioutil*test", false},
    		{"tempfile_test*foo", false},
    		{"tempfile_test" + sep + "foo", true},
    		{"tempfile_test*" + sep + "foo", true},
    		{"tempfile_test" + sep + "*foo", true},
    		{sep + "tempfile_test" + sep + "*foo", true},
    		{"tempfile_test*foo" + sep, true},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/mavencentral_dirlisting.html

        <a href="maven-metadata.xml">maven-metadata.xml</a>                                 29-Sep-2011 19:19                 817
        <a href="maven-metadata.xml.md5">maven-metadata.xml.md5</a>                             29-Sep-2011 19:19                  32
        <a href="maven-metadata.xml.sha1">maven-metadata.xml.sha1</a>                            29-Sep-2011 19:19                  40
        </pre>
    <hr>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/util/strcase/camelcase_test.go

    	type args struct {
    		n   string
    		sep string
    	}
    	tests := []struct {
    		name string
    		args args
    		want string
    	}{
    		{
    			name: "foo_bar",
    			args: args{
    				n:   "foo_bar",
    				sep: "_",
    			},
    			want: "FooBar",
    		},
    		{
    			name: "foo-bar",
    			args: args{
    				n:   "foo-bar",
    				sep: "-",
    			},
    			want: "FooBar",
    		},
    		{
    			name: "foo9bar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/strings/strings.go

    //
    // Edge cases for s and sep (for example, empty strings) are handled
    // as described in the documentation for SplitAfter.
    func SplitAfterN(s, sep string, n int) []string {
    	return genSplit(s, sep, len(sep), n)
    }
    
    // Split slices s into all substrings separated by sep and returns a slice of
    // the substrings between those separators.
    //
    // If s does not contain sep and sep is not empty, Split returns a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. test/linkx_run.go

    	"os/exec"
    	"strings"
    )
    
    func main() {
    	// test(" ") // old deprecated & removed syntax
    	test("=") // new syntax
    }
    
    func test(sep string) {
    	// Successful run
    	cmd := exec.Command("go", "run", "-ldflags=-X main.tbd"+sep+"hello -X main.overwrite"+sep+"trumped -X main.nosuchsymbol"+sep+"neverseen", "linkx.go")
    	var out, errbuf bytes.Buffer
    	cmd.Stdout = &out
    	cmd.Stderr = &errbuf
    	err := cmd.Run()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top