Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,190 for a$b (0.1 sec)

  1. src/regexp/onepass_test.go

    	{`^[a-c]*`, false},
    	{`^...$`, true},
    	{`^(?:a|(?:aa))$`, true},
    	{`^a((b))c$`, true},
    	{`^a.[l-nA-Cg-j]?e$`, true},
    	{`^a((b))$`, true},
    	{`^a(?:(b)|(c))c$`, true},
    	{`^a(?:(b*)|(c))c$`, false},
    	{`^a(?:b|c)$`, true},
    	{`^a(?:b?|c)$`, true},
    	{`^a(?:b?|c?)$`, false},
    	{`^a(?:b?|c+)$`, true},
    	{`^a(?:b+|(bc))d$`, false},
    	{`^a(?:bc)+$`, true},
    	{`^a(?:[bcd])+$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    		return Convert_v1alpha2_AllocationResult_To_resource_AllocationResult(a.(*v1alpha2.AllocationResult), b.(*resource.AllocationResult), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*resource.AllocationResult)(nil), (*v1alpha2.AllocationResult)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. test/fixedbugs/bug289.go

    // https://code.google.com/p/gofrontend/issues/detail?id=1
    
    package main
    
    func f1() {
    	a, b := f() // ERROR "assignment mismatch|does not match|cannot initialize"
    	_, _ = a, b
    }
    
    func f2() {
    	var a, b int
    	a, b = f() // ERROR "assignment mismatch|does not match|cannot assign"
    	_, _ = a, b
    }
    
    func f() int {
    	return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 495 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		"_", "a_", "_a", "a_b", "1_", "_1", "1_2",
    		".", "a.", ".a", "a..b", "1.", ".1", "1..2",
    		" ", "a ", " a", "a b", "1 ", " 1", "1 2",
    		"A.a", "aB.a", "ab.A", "A1.a", "a1.A",
    		"A.1", "aB.1", "A1.1", "1A.1",
    		"0.A", "01.A", "012.A", "1A.a", "1a.A",
    		"A.B.C.D.E", "AA.BB.CC.DD.EE", "a.B.c.d.e", "aa.bB.cc.dd.ee",
    		"a@b", "a,b", "a_b", "a;b",
    		"a:b", "a%b", "a?b", "a$b",
    		strings.Repeat("a", 254),
    	}
    	for _, val := range badValues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. test/abi/many_intstar_input.go

    	"fmt"
    )
    
    var sink int = 3
    
    //go:registerparams
    //go:noinline
    func F(a, b, c, d, e, f *int) {
    	G(f, e, d, c, b, a)
    	sink += *a // *a == 6 after swapping in G
    }
    
    //go:registerparams
    //go:noinline
    func G(a, b, c, d, e, f *int) {
    	var scratch [1000 * 100]int
    	scratch[*a] = *f                    // scratch[6] = 1
    	fmt.Println(*a, *b, *c, *d, *e, *f) // Forces it to spill b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 967 bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/GraphTest.java

            assertEquals(2, graph.getVertices().size());
            assertFalse(hasEdge(graph, "a", "b"));
            assertFalse(hasEdge(graph, "b", "a"));
    
            Vertex a = graph.getVertex("a");
            Vertex b = graph.getVertex("b");
            assertEquals("a", a.getLabel());
            assertEquals("b", b.getLabel());
    
            addEdge(graph, "a", "b");
            assertTrue(a.getChildren().contains(b));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/net/http/cgi/host_test.go

    		Root: "/test.cgi",
    	}
    	expectedMap := map[string]string{
    		"param-a":             "b",
    		"env-PATH_INFO":       "/extrapath",
    		"env-QUERY_STRING":    "a=b",
    		"env-REQUEST_URI":     "/test.cgi/extrapath?a=b",
    		"env-SCRIPT_FILENAME": os.Args[0],
    		"env-SCRIPT_NAME":     "/test.cgi",
    	}
    	runCgiTest(t, h, "GET /test.cgi/extrapath?a=b HTTP/1.0\nHost: example.com\n\n", expectedMap)
    }
    
    func TestPathInfoDirRoot(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            """
    
            when:
            run(":a:resolveConf", "-i")
    
            then:
            fixture.assertProjectsConfigured(":", ":a", ":b")
        }
    
        def "handles buildNeeded"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            file("a/build.gradle") << """ apply plugin: 'java' """
            file("b/build.gradle") << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/action/BuildActionSerializerTest.groovy

            def startParameter = new StartParameterInternal()
            startParameter.taskNames = ['a', 'b']
            def action = new ExecuteBuildAction(startParameter)
    
            expect:
            def result = serialize(action, BuildActionSerializer.create())
            result instanceof ExecuteBuildAction
            result.startParameter.taskNames == ['a', 'b']
        }
    
        def "serializes #buildOptionName boolean build option"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    		return Convert_v1beta4_APIEndpoint_To_kubeadm_APIEndpoint(a.(*APIEndpoint), b.(*kubeadm.APIEndpoint), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*kubeadm.APIEndpoint)(nil), (*APIEndpoint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top