Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for P2 (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

            p1.childProjects.empty
    
            def p2 = registry.stateFor(projectId("p2"))
            p2.name == "p2"
            p2.displayName.displayName == "project ':p2'"
            p2.identityPath == Path.path(":p2")
            p2.projectPath == Path.path(":p2")
            p2.parent.is(root)
            p2.componentIdentifier.projectPath == ":p2"
            p2.componentIdentifier.buildTreePath == ":p2"
            p2.childProjects.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. src/os/exec/lp_windows_test.go

    		files:     []string{`p1\a.exe`, `p2\b.exe`},
    		searchFor: `b`,
    		want:      `p2\b.exe`,
    	},
    	{
    		name:      "no extension",
    		files:     []string{`p1\b`, `p2\a`},
    		searchFor: `a`,
    		wantErr:   exec.ErrNotFound,
    	},
    	{
    		name:      "directory, no extension",
    		files:     []string{`p1\a.exe`, `p2\a.exe`},
    		searchFor: `p2\a`,
    		want:      `p2\a.exe`,
    	},
    	{
    		name:      "no match",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/runtime/pinner_test.go

    	defer pinner.Unpin()
    	p := new(obj)
    	p2 := &objWith[*obj]{o: p}
    	assertCgoCheckPanics(t, p2)
    	pinner.Pin(p2)
    	assertCgoCheckPanics(t, p2)
    }
    
    func TestPinnerCgoCheckPtr2Pinned2Unpinned(t *testing.T) {
    	var pinner runtime.Pinner
    	defer pinner.Unpin()
    	p := new(obj)
    	p2 := &objWith[*obj]{o: p}
    	p3 := &objWith[*objWith[*obj]]{o: p2}
    	assertCgoCheckPanics(t, p2)
    	assertCgoCheckPanics(t, p3)
    	pinner.Pin(p2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/net/http/pattern.go

    func (p1 *pattern) compareMethods(p2 *pattern) relationship {
    	if p1.method == p2.method {
    		return equivalent
    	}
    	if p1.method == "" {
    		// p1 matches any method, but p2 does not, so p1 is more general.
    		return moreGeneral
    	}
    	if p2.method == "" {
    		return moreSpecific
    	}
    	if p1.method == "GET" && p2.method == "HEAD" {
    		// p1 matches GET and HEAD; p2 matches only HEAD.
    		return moreGeneral
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/README

    multi-phase script with a bug in it:
    
    	# GOPATH with p1 in d2, p2 in d2
    	env GOPATH=$WORK${/}d1${:}$WORK${/}d2
    
    	# build & install p1
    	env
    	go install -i p1
    	! stale p1
    	! stale p2
    
    	# modify p2 - p1 should appear stale
    	cp $WORK/p2x.go $WORK/d2/src/p2/p2.go
    	stale p1 p2
    
    	# build & install p1 again
    	go install -i p11
    	! stale p1
    	! stale p2
    
    	-- $WORK/d1/src/p1/p1.go --
    	package p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/net/http/pattern_test.go

    			t.Errorf("%q:\ngot %v, want error containing %q", test.in, err, test.contains)
    		}
    	}
    }
    
    func (p1 *pattern) equal(p2 *pattern) bool {
    	return p1.method == p2.method && p1.host == p2.host &&
    		slices.Equal(p1.segments, p2.segments)
    }
    
    func mustParsePattern(tb testing.TB, s string) *pattern {
    	tb.Helper()
    	p, err := parsePattern(s)
    	if err != nil {
    		tb.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

                    - task ':run' property 'p2'""".stripIndent())
        }
    
        def "zipped provider is live"() {
            buildFile """
                tasks.register("run") {
                    def objects = objects
                    doLast {
                        def p1 = objects.property(String)
                        def p2 = objects.property(String)
                        def zipped = p1.zip(p2) { l, r -> l + " " + r }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p384.go

    	t3 := new(fiat.P384Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
    	t4 := new(fiat.P384Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
    	t3.Mul(t3, t4)                               // t3 := t3 * t4
    	t4.Add(t0, t1)                               // t4 := t0 + t1
    	t3.Sub(t3, t4)                               // t3 := t3 - t4
    	t4.Add(p1.y, p1.z)                           // t4 := Y1 + Z1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/obj/loong64/obj.go

    	}
    	p1 := obj.Appendp(p, newprog)
    	p2 := obj.Appendp(p1, newprog)
    	p1.As = AMOVV
    	p1.From.Type = obj.TYPE_MEM
    	p1.From.Sym = source.Sym
    	p1.From.Name = obj.NAME_GOTREF
    	p1.To.Type = obj.TYPE_REG
    	p1.To.Reg = REGTMP
    
    	p2.As = p.As
    	p2.From = p.From
    	p2.To = p.To
    	if p.From.Name == obj.NAME_EXTERN {
    		p2.From.Reg = REGTMP
    		p2.From.Name = obj.NAME_NONE
    		p2.From.Sym = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top