Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for notFound (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/CompositeDynamicObjectTest.groovy

            obj.getProperty("p")
    
            then:
            def e = thrown(MissingPropertyException)
            1 * obj1.tryGetProperty("p") >> DynamicInvokeResult.notFound()
            1 * obj2.tryGetProperty("p") >> DynamicInvokeResult.notFound()
            1 * obj3.tryGetProperty("p") >> DynamicInvokeResult.notFound()
            e.message == "Could not get unknown property 'p' for <obj>."
        }
    
        def "set property returns on first delegate that has the property"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/internal/bytealg/indexbyte_mips64x.s

    	MOVBU	c+24(FP), R3	// byte to find
    	MOVV	R1, R4		// store base for later
    	ADDV	R1, R2		// end
    	ADDV	$-1, R1
    
    loop:
    	ADDV	$1, R1
    	BEQ	R1, R2, notfound
    	MOVBU	(R1), R5
    	BNE	R3, R5, loop
    
    	SUBV	R4, R1		// remove base
    	MOVV	R1, ret+32(FP)
    	RET
    
    notfound:
    	MOVV	$-1, R1
    	MOVV	R1, ret+32(FP)
    	RET
    
    TEXT ·IndexByteString(SB),NOSPLIT,$0-32
    	MOVV	s_base+0(FP), R1
    	MOVV	s_len+8(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 985 bytes
    - Viewed (0)
  3. src/internal/bytealg/indexbyte_loong64.s

    	// R7 = byte to find
    	AND	$0xff, R7
    	MOVV	R4, R6		// store base for later
    	ADDV	R4, R5		// end
    	ADDV	$-1, R4
    
    	PCALIGN	$16
    loop:
    	ADDV	$1, R4
    	BEQ	R4, R5, notfound
    	MOVBU	(R4), R8
    	BNE	R7, R8, loop
    
    	SUBV	R6, R4		// remove base
    	RET
    
    notfound:
    	MOVV	$-1, R4
    	RET
    
    TEXT ·IndexByteString<ABIInternal>(SB),NOSPLIT,$0-32
    	// R4 = s_base
    	// R5 = s_len
    	// R6 = byte to find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 905 bytes
    - Viewed (0)
  4. test/fixedbugs/bug155.go

    const big uint64 = 1<<63
    
    func f(a uint64) uint64 {
    	return a << big
    }
    
    func main() {
    	f(1)
    }
    
    /*
    main·f: doasm: notfound from=75 to=13 (82)    SHLQ    $-9223372036854775808,BX
    main·f: doasm: notfound from=75 to=13 (82)    SHLQ    $-9223372036854775808,BX
    main·f: doasm: notfound from=75 to=13 (82)    SHLQ    $-9223372036854775808,BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:19:59 UTC 2012
    - 525 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanWithMixInProperties.groovy

                    }
                    return DynamicInvokeResult.notFound();
                }
    
                @Override
                DynamicInvokeResult trySetProperty(String name, Object value) {
                    if (name == "dyno") {
                        return DynamicInvokeResult.found();
                    }
                    return DynamicInvokeResult.notFound();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/FilteredModuleComponentRepository.java

            }
    
            @Override
            public boolean isVersionListing() {
                return moduleComponentIdentifier == null;
            }
    
            @Override
            public void notFound() {
                notFound = true;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/CompositeDynamicObject.java

                DynamicInvokeResult result = object.tryGetProperty(name);
                if (result.isFound()) {
                    return result;
                }
            }
            return DynamicInvokeResult.notFound();
        }
    
        @Override
        public DynamicInvokeResult trySetProperty(String name, @Nullable Object value) {
            for (DynamicObject object : updateObjects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_ppc64x.s

    	LXVD2X	(R0)(R9),V2
    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat0
    
    	BR	notfound
    
    cmp32:	// Length 32 - 63
    
    	// Bytes 0 - 15
    	LXVD2X	(R0)(R8),V2
    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat0
    
    	// Bytes 16 - 31
    	LXVD2X	(R8)(R11),V2
    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat1		// Match found at R8+16 bytes, jump out
    
    	BEQ	notfound		// Is length <= 32? (CR0 holds this comparison on entry to cmp32)
    	CMP	R4,$48
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/common/maven-repository-stub/src/main/java/com/example/MavenRepositoryStub.java

    import static com.github.tomakehurst.wiremock.client.WireMock.anyUrl;
    import static com.github.tomakehurst.wiremock.client.WireMock.get;
    import static com.github.tomakehurst.wiremock.client.WireMock.notFound;
    import static com.github.tomakehurst.wiremock.client.WireMock.ok;
    import static com.github.tomakehurst.wiremock.client.WireMock.put;
    import static com.github.tomakehurst.wiremock.client.WireMock.unauthorized;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_query_empty.txt

    -- $WORK/emptysub/example.com/join/@v/list --
    v1.1.0
    -- $WORK/emptysub/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    -- $WORK/notfound/example.com/join/subpkg/@v/list --
    v1.0.0-does-not-exist
    -- $WORK/notfound/example.com/join/@v/list --
    v1.1.0
    -- $WORK/notfound/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    -- $WORK/gatekeeper/example.com/join/subpkg/@v/list --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top