Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 860 for a$b (0.1 sec)

  1. src/sort/gen_sort_variants.go

    	a, b = order2{{.FuncSuffix}}(data, a, b, swaps {{.ExtraArg}})
    	b, c = order2{{.FuncSuffix}}(data, b, c, swaps {{.ExtraArg}})
    	a, b = order2{{.FuncSuffix}}(data, a, b, swaps {{.ExtraArg}})
    	return b
    }
    
    // medianAdjacent{{.FuncSuffix}} finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            given:
            mavenRepo.module("org.other", "externalA", "1.2").publish()
            mavenRepo.module("org.other", "externalB", "2.1").publish()
    
            and:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
    
            and:
            buildFile << """
    allprojects {
        repositories { maven { url '$mavenRepo.uri' } }
    }
    project(":a") {
        configurations {
            api
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/sort/zsortinterface.go

    // order2 returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a.
    func order2(data Interface, a, b int, swaps *int) (int, int) {
    	if data.Less(b, a) {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median(data Interface, a, b, c int, swaps *int) int {
    	a, b = order2(data, a, b, swaps)
    	b, c = order2(data, b, c, swaps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K 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. 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)
  6. 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)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            os.getScriptName("a.BAT") == "a.BAT"
            os.getScriptName("a") == "a.bat"
            os.getScriptName("a.exe") == "a.bat"
            os.getScriptName("a.b/c") == "a.b/c.bat"
            os.getScriptName("a.b\\c") == "a.b\\c.bat"
        }
    
        def "windows transforms executable names"() {
            def os = new OperatingSystem.Windows()
    
            expect:
            os.executableSuffix == ".exe"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. operator/pkg/patch/patch_test.go

      namespace: istio-system
    a:
      b:
      - name: n1
        value: v2
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc:  "ModifyListEntryValueQuoted",
    			path:  `a.b.[name:n1].value`,
    			value: `v2`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
      b:
      - name: "n1"
        value: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  9. pkg/volume/util/subpath/subpath_windows_test.go

    			pathname:                filepath.Join(testingVolumePath, `a\b`),
    			expectError:             false,
    			expectedExistingPath:    filepath.Join(testingVolumePath, `a\b`),
    			expectedToCreateDirs:    []string{},
    			createSubPathBeforeTest: true,
    		},
    		{
    			base:                    testingVolumePath,
    			pathname:                filepath.Join(testingVolumePath, `a\b\c\`),
    			expectError:             false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1beta1/zz_generated.conversion.go

    		return Convert_v1beta1_HTTPIngressPath_To_networking_HTTPIngressPath(a.(*v1beta1.HTTPIngressPath), b.(*networking.HTTPIngressPath), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.HTTPIngressPath)(nil), (*v1beta1.HTTPIngressPath)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 35.8K bytes
    - Viewed (0)
Back to top