Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 212 for b1 (1.03 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

    """
        }
    
        def "graph with multiple dependents"() {
            given:
            node("a")
            node("b1")
            node("b2")
            node("b3")
    
            resolvedConf("a", [dep("a", "b1"), dep("a", "b2"), dep("a", "b3")])
    
            resolvedConf("b1", [dep("b1", "b2"), dep("b1", "b3")])
            resolvedConf("b2", [dep("b2", "b3")])
            resolvedConf("b3", [])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc-bare-m.go

    	b0.Event("ProcStart", trace.ProcID(1), testgen.Seq(1))
    	b0.Event("GoSyscallEndBlocked")
    
    	// A bare M stole the goroutine's P at the generation boundary.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcSyscallAbandoned)
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1009 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r82/CompositeBuildCrossVersionSpec.groovy

            given:
            includedBuild("b1")
            includedBuild("b2")
    
            when:
            def model = withConnection {
                it.getModel(GradleBuild)
            }
    
            then:
            def builds = model.includedBuilds
            builds.size() == 2
            builds.first().projects.first().buildTreePath == ":b1"
            model.projects.first().buildTreePath == ":"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:21:57 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary.go

    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine stole P0 at the generation boundary.
    	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("ProcStatus", trace.ProcID(0), go122.ProcSyscallAbandoned)
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/dist/testjson_test.go

    	})
    	// Write a block containing a whole line bordered by two partial lines.
    	t.Run("bytes", func(t *testing.T) {
    		checkJSONFilterWith(t, want, func(f *testJSONFilter) {
    			const b1 = 5
    			const b2 = len(in) - 5
    			f.Write([]byte(in[:b1]))
    			f.Write([]byte(in[b1:b2]))
    			f.Write([]byte(in[b2:]))
    		})
    	})
    }
    
    func checkJSONFilter(t *testing.T, in, want string) {
    	t.Helper()
    	checkJSONFilterWith(t, want, func(f *testJSONFilter) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 20:13:24 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

            when:
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildB').task(':b1:logProject')
        }
    """
    
            execute(buildA, ":delegate")
    
            then:
            executed ":buildB:b1:logProject"
            output.contains("Executing build 'buildB' project ':b1' task ':b1:logProject'")
        }
    
        def "can depend on multiple tasks of included build"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-CHACHA20-SHA256

    00000150  7e b1 27 b1 79 44 ef 79  95 51 75 02 24 2c ea ab  |~.'.yD.y.Qu.$,..|
    00000160  d5 e1 fd aa 81 55 89 cf  bc 9c 11 2b 0b 4a 99 9f  |.....U.....+.J..|
    00000170  50 93 68 a1 c8 79 3d d8  aa d8 54 e3 d5 1a 97 90  |P.h..y=...T.....|
    00000180  33 87 a9 70 1d 9d ba 78  d0 87 8a 98 6f 1b 1e b0  |3..p...x....o...|
    00000190  e8 92 78 df 21 61 88 36  fa 14 4b c9 b1 a4 93 88  |..x.!a.6..K.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/cmd/gofmt/long_test.go

    	return (&printer.Config{Mode: printerMode, Tabwidth: tabWidth}).Fprint(src, fset, f)
    }
    
    func testFile(t *testing.T, b1, b2 *bytes.Buffer, filename string) {
    	// open file
    	f, err := os.Open(filename)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    
    	// read file
    	b1.Reset()
    	_, err = io.Copy(b1, f)
    	f.Close()
    	if err != nil {
    		t.Error(err)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top