Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for b1 (0.02 sec)

  1. src/cmd/compile/internal/noder/posmap.go

    			}
    			p1 := src.MakePos(m.makeSrcPosBase(p0b), p0.Line(), p0.Col())
    			b1 = src.NewLinePragmaBase(p1, fn, absfn, b0.Line(), b0.Col())
    		}
    		if m.bases == nil {
    			m.bases = make(map[*syntax.PosBase]*src.PosBase)
    		}
    		m.bases[b0] = b1
    	}
    
    	// update cache
    	m.cache.last = b0
    	m.cache.base = b1
    
    	return b1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                    includeBuild 'buildC'
                """
            }
    
            buildB = multiProjectBuildInSubFolder("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
                    }
                    project(':b1') {
                        dependencies {
                            testImplementation "org.test:buildC:1.0"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_generic.go

    	// r2 = a0×b2 + a1×b1 + a2×b0 + 19×(a3×b4 + a4×b3)
    	r2 := mul64(a0, b2)
    	r2 = addMul64(r2, a1, b1)
    	r2 = addMul64(r2, a2, b0)
    	r2 = addMul64(r2, a3_19, b4)
    	r2 = addMul64(r2, a4_19, b3)
    
    	// r3 = a0×b3 + a1×b2 + a2×b1 + a3×b0 + 19×a4×b4
    	r3 := mul64(a0, b3)
    	r3 = addMul64(r3, a1, b2)
    	r3 = addMul64(r3, a2, b1)
    	r3 = addMul64(r3, a3, b0)
    	r3 = addMul64(r3, a4_19, b4)
    
    	// r4 = a0×b4 + a1×b3 + a2×b2 + a3×b1 + a4×b0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-task-across-generations.go

    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A running goroutine emits a task begin.
    	b1 := g1.Batch(trace.ThreadID(0), 0)
    	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b1.Event("UserTaskBegin", trace.TaskID(2), trace.TaskID(0) /* 0 means no parent, not background */, "my task", testgen.NoStack)
    
    	g2 := t.Generation(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/init0.go

    	c0 = d0
    	d0 = b0
    )
    
    var (
    	s1 /* ERROR "initialization cycle: s1 refers to itself" */ = s1
    
    	x1 /* ERROR "initialization cycle for x1" */ = y1
    	y1 = x1
    
    	a1 = b1
    	b1 /* ERROR "initialization cycle for b1" */ = c1
    	c1 = d1
    	d1 = b1
    )
    
    // initialization cycles (we know the types)
    const (
    	s2 /* ERROR "initialization cycle: s2 refers to itself" */ int = s2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            moduleA.dependencies.collect { it.targetModuleName } == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            allProjects.getIdeaProject('buildB').modules.collect { it.name } == ['buildB', 'buildB-b1', 'b2']
            allProjects.getIdeaProject('buildC').modules.collect { it.name } == ['buildA-buildC']
            allProjects.getIdeaProject('buildD').modules.collect { it.name } == ['buildD', 'buildD-b1', 'buildD-buildC']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    	b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack)
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(3), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-syscall-steal-proc-simple.go

    	b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack)
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(2), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 988 bytes
    - Viewed (0)
  9. test/initexp.go

    func z() int { return x }
    
    func a1() int { return b1() + b2() + b3() + b4() + b5() + b6() + b7() }
    func a2() int { return b1() + b2() + b3() + b4() + b5() + b6() + b7() }
    func a3() int { return b1() + b2() + b3() + b4() + b5() + b6() + b7() }
    func a4() int { return b1() + b2() + b3() + b4() + b5() + b6() + b7() }
    func a5() int { return b1() + b2() + b3() + b4() + b5() + b6() + b7() }
    func a6() int { return b1() + b2() + b3() + b4() + b5() + b6() + b7() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue18640.go

    	d = c
    )
    
    // The compiler cannot handle these cases. Disabled for now.
    // See issue #25838.
    /*
    type (
    	e = f
    	f = g
    	g = []h
    	h i
    	i = j
    	j = e
    )
    
    type (
    	a1 struct{ *b1 }
    	b1 = c1
    	c1 struct{ *b1 }
    )
    
    type (
    	a2 struct{ b2 }
    	b2 = c2
    	c2 struct{ *b2 }
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 05 20:30:19 UTC 2018
    - 505 bytes
    - Viewed (0)
Back to top