Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 398 for a$b (0.07 sec)

  1. src/hash/maphash/maphash_purego.go

    }
    
    func r4(p []byte) uint64 {
    	return uint64(byteorder.LeUint32(p))
    }
    
    func r8(p []byte) uint64 {
    	return byteorder.LeUint64(p)
    }
    
    func mix(a, b uint64) uint64 {
    	hi, lo := bits.Mul64(a, b)
    	return hi ^ lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/stmt0.go

    	a = f1()
    	a = f2 /* ERROR "assignment mismatch: 1 variable but f2 returns 2 values" */ ()
    	a, b = f2()
    	a, b, c = f2 /* ERROR "assignment mismatch: 3 variables but f2 returns 2 values" */ ()
    	a, b, c = f3()
    	a, b = f3 /* ERROR "assignment mismatch: 2 variables but f3 returns 3 values" */ ()
    
    	a, b, c = <- /* ERROR "assignment mismatch: 3 variables but 1 value" */ ch
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work.txt

    env GOWORK=off
    go build -n -o foo foo.go
    env GOWORK=
    go build -n -o foo foo.go
    
    -- go.work.dup --
    go 1.18
    
    use (
    	a
    	b
    	../src/a
    )
    -- go.work.want --
    go $goversion
    
    use (
    	./a
    	./b
    )
    -- go.work.d --
    go 1.18
    
    use (
    	a
    	b
    	d
    )
    -- a/go.mod --
    
    module example.com/a
    
    -- a/a.go --
    package a
    
    import "fmt"
    import "rsc.io/quote"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GFileUtilsTest.groovy

            then:
            p.isDirectory()
            f.parentFile == p
        }
    
        def "mkdirs fails if can't make parent"() {
            given:
            def e = temp.file("a/b/c/d/e")
            def b = temp.createFile("a/b")
            def c = temp.file("a/b/c")
    
            expect:
            b.file
    
            when:
            mkdirs(e)
    
            then:
            def ex = thrown UncheckedIOException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            def b = component('1.3')
            def c = component('2.0')
            def selectedComponentResult = Mock(ComponentSelectionContext)
    
            when:
            chooser.selectNewestMatchingComponent([c, a, b], selectedComponentResult, versionSelectorScheme.parseSelector("1.+"), null, consumerAttributes)
    
            then:
            _ * componentSelectionRules.rules >> []
            1 * selectedComponentResult.getContentFilter() >> null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/crypto/md5/gen.go

    	"math/bits"
    )
    
    func blockGeneric(dig *digest, p []byte) {
    	// load state
    	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
    
    	for i := 0; i <= len(p)-BlockSize; i += BlockSize {
    		// eliminate bounds checks on p
    		q := p[i:]
    		q = q[:BlockSize:BlockSize]
    
    		// save current state
    		aa, bb, cc, dd := a, b, c, d
    
    		// load input block
    		{{range $i := seq 16 -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm_test.go

    							Default: structuralschema.JSON{Object: "A"},
    						},
    					},
    					"b": {
    						Generic: structuralschema.Generic{
    							Default: structuralschema.JSON{Object: "B"},
    						},
    					},
    					"c": {
    						Generic: structuralschema.Generic{
    							Default: structuralschema.JSON{Object: "C"},
    						},
    					},
    				},
    			},
    		}, `[{"a":1,"b":"B","c":"C"},{"a":"A","b":1,"c":"C"},{"a":"A","b":"B","c":1}]`},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

            then:
            eclipseProjects*.name == ['root', 'a', 'b', 'includedBuild', 'c', 'd']
        }
    
        @Issue("https://github.com/gradle/gradle/issues/5167")
        @TargetGradleVersion('>6.6')
        def "Can fetch project scoped models from included builds with substitutions after Gradle 6.6"() {
            given:
            multiProjectBuildInRootFolder("root", ["a", "b"]) {
                settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":")
                buildModelCreated()
                modelsCreated(":a", ":b", ":c", ":d")
            }
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model2.size() == 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/testdata/issue49205.go

    type _ struct {
    	x y /* ERROR syntax error: unexpected comma in struct type; possibly missing semicolon or newline or } */ ,
    }
    
    func f(a, b c /* ERROR unexpected name d in parameter list; possibly missing comma or \) */ d) {
    	f(a, b, c /* ERROR unexpected name d in argument list; possibly missing comma or \) */ d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 952 bytes
    - Viewed (0)
Back to top