Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 616 for _abc (0.04 sec)

  1. src/cmd/go/testdata/script/generate.txt

    go generate './generate/alias.go'
    stdout 'Now is the time for all good men'
    
    # Test go generate's variable substitution
    go generate './generate/substitution.go'
    stdout $GOARCH' substitution.go:7 pabc xyzp/substitution.go/123'
    
    # Test go generate's run and skip flags
    go generate -run y.s './generate/flag.go'
    stdout 'yes' # flag.go should select yes
    ! stdout 'no' # flag.go should not select no
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            and:
            noImports()
    
            where:
            include       | macro
            'A()'         | 'A'
            'A( )'        | 'A'
            'ABC( )'      | 'ABC'
            '_A$2( )'     | '_A$2'
            'abc( )'      | 'abc'
            'a12  \t(\t)' | 'a12'
        }
    
        def "finds macro function call include with parameters"() {
            when:
            sourceFile << """
        #include ${include}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    	{"x", "a", -1},
    	{"x", "x", 0},
    	{"abc", "a", 0},
    	{"abc", "b", 1},
    	{"abc", "c", 2},
    	{"abc", "x", -1},
    	// test special cases in Index() for short strings
    	{"", "ab", -1},
    	{"bc", "ab", -1},
    	{"ab", "ab", 0},
    	{"xab", "ab", 1},
    	{"xab"[:2], "ab", -1},
    	{"", "abc", -1},
    	{"xbc", "abc", -1},
    	{"abc", "abc", 0},
    	{"xabc", "abc", 1},
    	{"xabc"[:3], "abc", -1},
    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/path/path_test.go

    	{"//abc", "/abc"},
    	{"///abc", "/abc"},
    	{"//abc//", "/abc"},
    	{"abc//", "abc"},
    
    	// Remove . elements
    	{"abc/./def", "abc/def"},
    	{"/./abc/def", "/abc/def"},
    	{"abc/.", "abc"},
    
    	// Remove .. elements
    	{"abc/def/ghi/../jkl", "abc/def/jkl"},
    	{"abc/def/../ghi/../jkl", "abc/jkl"},
    	{"abc/def/..", "abc"},
    	{"abc/def/../..", "."},
    	{"/abc/def/../..", "/"},
    	{"abc/def/../../..", ".."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 01:12:09 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            def step1 = PatternStepFactory.getStep("*abc", true);
            step1 instanceof HasSuffixPatternStep
            step1.suffix == "abc"
    
            step1.matches("abc")
            step1.matches("thing.abc")
            !step1.matches("thing.java")
    
            and:
            def step2 = PatternStepFactory.getStep("**abc", true);
            step2 instanceof HasSuffixPatternStep
            step2.suffix == "abc"
    
            step2.matches("abc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. src/encoding/csv/writer_test.go

    	Comma   rune
    }{
    	{Input: [][]string{{"abc"}}, Output: "abc\n"},
    	{Input: [][]string{{"abc"}}, Output: "abc\r\n", UseCRLF: true},
    	{Input: [][]string{{`"abc"`}}, Output: `"""abc"""` + "\n"},
    	{Input: [][]string{{`a"b`}}, Output: `"a""b"` + "\n"},
    	{Input: [][]string{{`"a"b"`}}, Output: `"""a""b"""` + "\n"},
    	{Input: [][]string{{" abc"}}, Output: `" abc"` + "\n"},
    	{Input: [][]string{{"abc,def"}}, Output: `"abc,def"` + "\n"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/lookup1.go

    	_ = s.ABC // ERROR "s.ABC undefined (type struct{x int; aBc int} has no field or method ABC, but does have field aBc)"
    }
    
    func _() {
    	type S struct {
    		x int
    	}
    	var s S
    	_ = s.x
    	_ = s /* ERROR "invalid operation: cannot call non-function s.x (variable of type int)" */ .x()
    	_ = s.X // ERROR "s.X undefined (type S has no field or method X, but does have field x)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/errors/errors_test.go

    			aggregate{fmt.Errorf("abc")},
    			aggregate{fmt.Errorf("abc")},
    		},
    		{
    			aggregate{fmt.Errorf("abc"), fmt.Errorf("def"), fmt.Errorf("ghi")},
    			aggregate{fmt.Errorf("abc"), fmt.Errorf("def"), fmt.Errorf("ghi")},
    		},
    		{
    			aggregate{aggregate{fmt.Errorf("abc")}},
    			aggregate{fmt.Errorf("abc")},
    		},
    		{
    			aggregate{aggregate{aggregate{fmt.Errorf("abc")}}},
    			aggregate{fmt.Errorf("abc")},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 13:16:21 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. src/errors/errors_test.go

    import (
    	"errors"
    	"testing"
    )
    
    func TestNewEqual(t *testing.T) {
    	// Different allocations should not be equal.
    	if errors.New("abc") == errors.New("abc") {
    		t.Errorf(`New("abc") == New("abc")`)
    	}
    	if errors.New("abc") == errors.New("xyz") {
    		t.Errorf(`New("abc") == New("xyz")`)
    	}
    
    	// Same allocation should be equal to itself (not crash).
    	err := errors.New("jkl")
    	if err != err {
    		t.Errorf(`err != err`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:55:10 UTC 2023
    - 765 bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/StringsTest.java

        // Identical valid surrogate pairs.
        assertEquals(
            "abc\uD8AB\uDCAB", Strings.commonPrefix("abc\uD8AB\uDCABdef", "abc\uD8AB\uDCABxyz"));
        // Differing valid surrogate pairs.
        assertEquals("abc", Strings.commonPrefix("abc\uD8AB\uDCABdef", "abc\uD8AB\uDCACxyz"));
        // One invalid pair.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top