Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 446 for b1 (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

            then:
            // Need to assert order separately to cater for parallel execution
            executedInOrder ":buildC:jar", ":b1:classes", ":b1:jar"
            executedInOrder ":buildC:jar", ":b2:classes", ":b2:jar"
    
            executedInOrder ":buildC:compileJava", ":buildC:jar", ":b1:compileJava", ":b1:jar"
            executedInOrder ":buildC:compileJava", ":buildC:jar", ":b2:compileJava", ":b2:jar"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  10. 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)
Back to top