Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for P2 (0.05 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

    //        when:
    //        run 'merge'
    //
    //        then:
    //        outputContains 'Transforming p1.zip'
    //        outputContains 'Transforming p2.zip'
    //        result.assertTasksExecuted ':p1:produce', ':p1:zip', ':p2:produce', ':p2:zip', ':merge'
    //        file('merge.txt').text == 'p1.zip,p2.zip'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/29147')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

        def "reports project structure with single composite"() {
            given:
            createDirs("p1", "p2", "p2/p22", "another")
            file("settings.gradle") << """rootProject.name = 'my-root-project'
    include('p1')
    include('p2')
    include('p2:p22')
    includeBuild('another')"""
            file('another/settings.gradle').touch()
    
            when:
            run ":projects"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    		p1.From.Type = obj.TYPE_CONST
    		p1.From.Offset = offset
    		p1.To.Type = obj.TYPE_REG
    		p1.To.Reg = REG_R12
    		p2 := obj.Appendp(p1, c.newprog)
    		p2.As = AMOVD
    		p2.From.Type = obj.TYPE_REG
    		p2.From.Reg = REG_R12
    		p2.To.Type = obj.TYPE_REG
    		p2.To.Reg = REG_LR
    		p3 := obj.Appendp(p2, c.newprog)
    		p3.As = obj.ACALL
    		p3.To.Type = obj.TYPE_REG
    		p3.To.Reg = REG_LR
    	}
    
    	var source *obj.Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/preemption/preemption_test.go

    				st.MakePod().Name("p").UID("p").Priority(highPriority).Obj(),
    			},
    			initPods: []*v1.Pod{
    				st.MakePod().Name("p1").UID("p1").Node("node1").Priority(midPriority).Obj(),
    				st.MakePod().Name("p2").UID("p2").Node("node2").Priority(midPriority).Obj(),
    			},
    			expected: [][]Candidate{
    				{
    					&candidate{
    						victims: &extenderv1.Victims{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                receivedProblems.sort { p1, p2 ->
                    if (p1.fqid != p2.fqid) {
                        return p1.fqid <=> p2.fqid
                    }
                    if (p1.contextualLabel != p2.contextualLabel) {
                        return p1.contextualLabel <=> p2.contextualLabel
                    }
                    if (p1.details != p2.details) {
                        return p1.details <=> p2.details
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. cmd/import-boss/main.go

    	}
    	return direct, indirect
    }
    
    func dfsImports(dest *[]string, seen map[string]bool, p *packages.Package) {
    	for _, p2 := range p.Imports {
    		if seen[p2.PkgPath] {
    			continue
    		}
    		seen[p2.PkgPath] = true
    		*dest = append(*dest, p2.PkgPath)
    		dfsImports(dest, seen, p2)
    	}
    }
    
    // verifyInverseRules checks that all packages that import a package are allowed to import it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. src/net/netip/netip.go

    // Compare returns an integer comparing two AddrPorts.
    // The result will be 0 if p == p2, -1 if p < p2, and +1 if p > p2.
    // AddrPorts sort first by IP address, then port.
    func (p AddrPort) Compare(p2 AddrPort) int {
    	if c := p.Addr().Compare(p2.Addr()); c != 0 {
    		return c
    	}
    	return cmp.Compare(p.Port(), p2.Port())
    }
    
    func (p AddrPort) String() string {
    	var b []byte
    	switch p.ip.z {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            ArtifactRepository repo = getRepo("a");
    
            Mirror mirrorA = newMirror("a", "a", null, "http://a");
            Mirror mirrorB = newMirror("b", "a", "p2", "http://b");
    
            Mirror mirrorC = newMirror("c", "*", null, "http://c");
            Mirror mirrorD = newMirror("d", "*", "p2", "http://d");
    
            assertSame(mirrorA, mirrorSelector.getMirror(repo, Arrays.asList(mirrorA)));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils_test.go

    		{p1: unscheduled5Hours, p2: unscheduled8Hours},
    		{p1: ready5Hours, p2: ready10Hours},
    	}
    	for i, test := range equalityTests {
    		t.Run(fmt.Sprintf("Equality tests %d", i), func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LogarithmicScaleDown, !test.disableLogarithmicScaleDown)
    			if test.p2 == nil {
    				test.p2 = test.p1
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    }
                }
    
                task t
    
                use(SomeCategory) {
                    assert project.show("p1") == "project p1 path ':'"
                    assert show("p2") == "project p2 path ':'"
                    assert t.show("t1") == "task t1 path ':t'"
                    tasks.t {
                        assert show("t2") == "task t2 path ':t'"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top