Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,440 for poop (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

                    SomeTask() {
                        value = new OtherBean(prop: 'a')
                        bean.value = new OtherBean(prop: 'b')
                    }
    
                    @TaskAction
                    void run() {
                        println "this.value = " + value.prop
                        println "bean.value = " + bean.value.prop
                    }
                }
    
                task ok(type: SomeTask)
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/crypto/x509/cert_pool_test.go

    		name  string
    		a     *CertPool
    		b     *CertPool
    		equal bool
    	}{
    		{
    			name:  "two empty pools",
    			a:     emptyPool,
    			b:     emptyPool,
    			equal: true,
    		},
    		{
    			name:  "one empty pool, one populated pool",
    			a:     emptyPool,
    			b:     nonSystemPopulated,
    			equal: false,
    		},
    		{
    			name:  "two populated pools",
    			a:     nonSystemPopulated,
    			b:     nonSystemPopulated,
    			equal: true,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 18:06:43 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/StartParameterConverterTest.groovy

            expect:
            def parameter = convert("-Dsome.prop", "-Dother.prop=123")
            parameter.systemPropertiesArgs == ["some.prop": "", "other.prop": "123"]
        }
    
        def "can provide project property on command-line"() {
            expect:
            def parameter = convert("-Psome.prop", "-Pother.prop=123")
            parameter.projectProperties == ["some.prop": "", "other.prop": "123"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/regexp/backtrack.go

    	b.push(re, pc, pos, false)
    	for len(b.jobs) > 0 {
    		l := len(b.jobs) - 1
    		// Pop job off the stack.
    		pc := b.jobs[l].pc
    		pos := b.jobs[l].pos
    		arg := b.jobs[l].arg
    		b.jobs = b.jobs[:l]
    
    		// Optimization: rather than push and pop,
    		// code that is going to Push and continue
    		// the loop simply updates ip, p, and arg
    		// and jumps to CheckAndLoop. We have to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_riscv64.s

    	// X11 = b_len
    	// X12 = b_cap (unused)
    	// X13 = byte to find
    	AND	$0xff, X13
    	MOV	X10, X12		// store base for later
    	ADD	X10, X11		// end
    	SUB	$1, X10
    
    loop:
    	ADD	$1, X10
    	BEQ	X10, X11, notfound
    	MOVBU	(X10), X14
    	BNE	X13, X14, loop
    
    	SUB	X12, X10		// remove base
    	RET
    
    notfound:
    	MOV	$-1, X10
    	RET
    
    TEXT ·IndexByteString<ABIInternal>(SB),NOSPLIT,$0-32
    	// X10 = b_base
    	// X11 = b_len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 919 bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    	ADCS	$0, R4
    	MOVD.P	R4, 8(R3)
    	SUB	$1, R0
    two:				// do it twice
    	TBZ	$1, R0, loop
    	LDP.P	16(R1), (R4, R5)
    	ADCS	$0, R4, R8	// c, z[i] = x[i] + c
    	ADCS	$0, R5, R9
    	STP.P	(R8, R9), 16(R3)
    	SUB	$2, R0
    loop:				// do four times per round
    	vwOneIter(ADCS, R0, len1)
    	B	loop
    len1:
    	CSET	HS, R2		// extract carry flag
    len0:
    	MOVD	R2, c+56(FP)
    done:
    	RET
    large:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskReplacementIntegrationTest.groovy

                    it.prop = "value 3" 
                }
                tasks.replace("foo", CustomTask)
                tasks.withType(CustomTask).all { 
                    assert it.prop == "value 3" 
                    it.prop = "value 4" 
                }
    
                assert foo.prop == "value 4"
                assert taskProvider.get().prop == "value 4"
            '''
    
            expect:
            succeeds 'help'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm.go

    	switch x := x.(type) {
    	case map[string]interface{}:
    		for k, prop := range s.Properties {
    			if prop.Default.Object == nil {
    				continue
    			}
    			if _, found := x[k]; !found || isNonNullableNull(x[k], &prop) {
    				x[k] = runtime.DeepCopyJSONValue(prop.Default.Object)
    			}
    		}
    		for k := range x {
    			if prop, found := s.Properties[k]; found {
    				Default(x[k], &prop)
    			} else if s.AdditionalProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 06 03:49:29 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/multiproject/dependencies-outgoingArtifact/kotlin/consumer/src/main/java/Application.java

    public class Application {
        public Properties readBuildInfo() throws IOException {
            Properties prop = new Properties();
            InputStream inputStream = null;
    
            try {
                inputStream = Application.class.getClassLoader().getResourceAsStream("build-info.properties");
                prop.load(inputStream);
            } finally {
                if (inputStream != null) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 680 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/s390x/ggen.go

    	"cmd/compile/internal/objw"
    	"cmd/internal/obj"
    	"cmd/internal/obj/s390x"
    )
    
    // clearLoopCutOff is the (somewhat arbitrary) value above which it is better
    // to have a loop of clear instructions (e.g. XCs) rather than just generating
    // multiple instructions (i.e. loop unrolling).
    // Must be between 256 and 4096.
    const clearLoopCutoff = 1024
    
    // zerorange clears the stack in the given range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top