Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 608 for A$C (0.06 sec)

  1. src/path/example_test.go

    func ExampleClean() {
    	paths := []string{
    		"a/c",
    		"a//c",
    		"a/c/.",
    		"a/c/b/..",
    		"/../a/c",
    		"/../a/b/../././/c",
    		"",
    	}
    
    	for _, p := range paths {
    		fmt.Printf("Clean(%q) = %q\n", p, path.Clean(p))
    	}
    
    	// Output:
    	// Clean("a/c") = "a/c"
    	// Clean("a//c") = "a/c"
    	// Clean("a/c/.") = "a/c"
    	// Clean("a/c/b/..") = "a/c"
    	// Clean("/../a/c") = "/a/c"
    	// Clean("/../a/b/../././/c") = "/a/c"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 19 00:10:22 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/TaskOrderSpecsTest.groovy

            where:
            executedTasks << [':a', ':b', ':c'].permutations().findAll { it != [':a', ':b', ':c'] } + [
                [':a', ':c'],
                [':a', ':b'],
                [':b', ':c'],
                [':a', ':c', ':b', ':d'],
                [':z', ':b', ':a', ':c'],
                [':z', ':c', ':x', ':y', ':b', ':a', ':d'],
                []
            ]
        }
    
        def "can match any order (#executedTasks)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/regexp/testdata/repetition.dat

    #:HA#280:E	(ab|a|c|bcd){0,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#280:E	(ab|a|c|bcd){0,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#281:E	(ab|a|c|bcd){1,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#281:E	(ab|a|c|bcd){1,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#282:E	(ab|a|c|bcd){2,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#282:E	(ab|a|c|bcd){2,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#283:E	(ab|a|c|bcd){3,}(d*)	ababcd	(0,6)(3,6)(6,6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/xml/test_utf16bebom.xml

                    <name>�4g(Y*��</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
                    <image file="taro.png" />
            </item>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/xml/test_utf16lebom.xml

                    <name>4�(g*Yΐ</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
                    <image file="taro.png" />
            </item>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. src/crypto/md5/md5block.go

    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+x8+0x698098d8, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+x9+0x8b44f7af, 12)
    		c = d + bits.RotateLeft32((((a^b)&d)^b)+c+xa+0xffff5bb1, 17)
    		b = c + bits.RotateLeft32((((d^a)&c)^a)+b+xb+0x895cd7be, 22)
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+xc+0x6b901122, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+xd+0xfd987193, 12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/reflectdata/alg_test.go

    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfFloats5(b *testing.B) {
    	var a [5]float32
    	var c [5]float32
    
    	for i := 0; i < b.N; i++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfFloats64(b *testing.B) {
    	var a [64]float32
    	var c [64]float32
    
    	for i := 0; i < b.N; i++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfFloats1024(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    ! go list ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    ! go install ./a/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/FixedStepPathMatcherTest.groovy

            def matcher = new FixedStepPathMatcher(step("a"), matchesLastOrSecondLast("c"))
    
            expect:
            matcher.matches(["a", "c"] as String[], 0)
            matcher.matches(["a", "c", "d"] as String[], 0)
            matcher.matches(["prefix", "a", "c"] as String[], 1)
    
            and:
            !matcher.matches([] as String[], 0)
            !matcher.matches(["a"] as String[], 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredDependencies 'a', 'c'
            declaredReplacements 'a->e'
            //resolution sequence: a,c,b,d,e!
            publishedMavenModules 'a->b', 'c->d', 'd->e'
            expect:
            resolvedModules 'c', 'd', 'e' //'b' is evicted
        }
    
        def "replaces transitive module"() {
            declaredDependencies 'a', 'c'
            declaredReplacements 'b->d'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top