Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 273 for b1 (0.02 sec)

  1. src/cmd/compile/internal/ssa/phiopt.go

    		for len(b0.Succs) == 1 && len(b0.Preds) == 1 {
    			pb0, b0 = b0, b0.Preds[0].b
    		}
    		if b0.Kind != BlockIf {
    			continue
    		}
    		pb1, b1 := b, b.Preds[1].b
    		for len(b1.Succs) == 1 && len(b1.Preds) == 1 {
    			pb1, b1 = b1, b1.Preds[0].b
    		}
    		if b1 != b0 {
    			continue
    		}
    		// b0 is the if block giving the boolean value.
    		// reverse is the predecessor from which the truth value comes.
    		var reverse int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

            createDirs("buildB", "buildB/buildSrc", "buildB/buildSrc/b1", "buildB/buildSrc/b2")
            buildB.file("buildSrc/settings.gradle") << """
                $settings
                include 'b1', 'b2'
            """
            buildB.file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java' }
                dependencies { implementation project(':b1') }
                project(':b1') { dependencies { implementation project(':b2') } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue52698.go

    type T[P any] struct {
    	_ P
    }
    
    type S /* ERROR "invalid recursive type" */ struct {
    	_ T[S]
    }
    
    // simplified test 1
    
    var _ A1[A1[string]]
    
    type A1[P any] struct {
    	_ B1[P]
    }
    
    type B1[P any] struct {
    	_ P
    }
    
    // simplified test 2
    var _ B2[A2]
    
    type A2 struct {
    	_ B2[string]
    }
    
    type B2[P any] struct {
    	_ C2[P]
    }
    
    type C2[P any] struct {
    	_ P
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 823 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sccp_test.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"strings"
    	"testing"
    )
    
    func TestSCCPBasic(t *testing.T) {
    	c := testConfig(t)
    	fun := c.Fun("b1",
    		Bloc("b1",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("v1", OpConst64, c.config.Types.Int64, 20, nil),
    			Valu("v2", OpConst64, c.config.Types.Int64, 21, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/fmt_test.go

    		fm.AddUnit("lit.go", "f3", true, u, 0)
    	}
    
    	var b1, b2, b3, b4 strings.Builder
    	if err := fm.EmitTextual(&b1); err != nil {
    		t.Fatalf("EmitTextual returned %v", err)
    	}
    	wantText := strings.TrimSpace(`
    mode: atomic
    p.go:10.0,11.0 2 0
    p.go:15.0,11.0 1 1
    q.go:20.0,25.0 3 0
    q.go:30.0,31.0 2 1
    q.go:33.0,40.0 7 2
    lit.go:99.0,100.0 1 0`)
    	gotText := strings.TrimSpace(b1.String())
    	if wantText != gotText {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_lazy_test_horizon.txt

    )
    
    replace (
    	a v0.1.0 => ./a1
    	b v0.1.0 => ./b1
    	c v0.1.0 => ./c1
    	c v0.2.0 => ./c2
    	x v0.1.0 => ./x1
    )
    -- a1/go.mod --
    module a
    
    go 1.17
    
    require b v0.1.0
    -- a1/a.go --
    package a
    -- a1/a_test.go --
    package a_test
    
    import _ "b"
    -- b1/go.mod --
    module b
    
    go 1.17
    
    require c v0.2.0
    -- b1/b.go --
    package b
    -- b1/b_test.go --
    package b_test
    
    import (
    	"c"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 30 18:05:18 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_import_toolchain.txt

    # if needed to process newly-reolved imports.
    
    env TESTGO_VERSION=go1.21.0
    env TESTGO_VERSION_SWITCH=switch
    
    cp go.mod go.mod.orig
    
    # tidy reports needing 1.22.0 for b1
    env GOTOOLCHAIN=local
    ! go mod tidy
    stderr '^go: example imports\n\texample.net/b: module ./b1 requires go >= 1.22.0 \(running go 1.21.0; GOTOOLCHAIN=local\)$'
    env GOTOOLCHAIN=auto
    go mod tidy
    
    cmp stderr tidy-stderr.want
    cmp go.mod go.mod.tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_extra.txt

    // on it (perhaps due to a missed file in a VCS commit).
    -- a1/a.go --
    package a
    import _ "example.net/b"
    
    -- b1/go.mod --
    module example.net/b
    
    go 1.15
    -- b1/b.go --
    package b
    
    -- b2/go.mod --
    module example.net/b
    
    go 1.15
    
    require example.net/c v0.1.0
    -- b2/b.go --
    package b
    
    -- c1/go.mod --
    module example.net/c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue50729.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // version 1
    var x1 T1[B1]
    
    type T1[_ any] struct{}
    type A1 T1[B1]
    type B1 = T1[A1]
    
    // version 2
    type T2[_ any] struct{}
    type A2 T2[B2]
    type B2 = T2[A2]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 340 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    )
    
    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    	example.com/c v0.1.0 => ./c1
    	example.com/c v0.2.0 => ./c2
    	example.com/d v0.1.0 => ./d
    	example.com/d v0.2.0 => ./d
    )
    -- go.mod.down2 --
    module example.com/a
    
    go 1.15
    
    require example.com/c v0.1.0
    
    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    	example.com/c v0.1.0 => ./c1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top