Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 237 for notFound (0.11 sec)

  1. src/internal/bytealg/indexbyte_riscv64.s

    	// 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
    	// X12 = byte to find
    	AND	$0xff, X12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 919 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics_test.go

    			apiserver_envelope_encryption_kms_operations_latency_seconds_bucket{grpc_status_code="NotFound",method_name="/v2alpha1.KeyManagementService/Encrypt",provider_name="providerName",le="0.0016"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                }
                return false;
            }
    
            public DynamicInvokeResult getProperty(String name) {
                if (!includeProperties) {
                    return DynamicInvokeResult.notFound();
                }
    
                maybeAddCallInterceptionHooksToMetaclass(name);
                MetaClass metaClass = getMetaClass();
    
                // First look for a property known to the meta-class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                if (extension != null) {
                    return DynamicInvokeResult.found(extension);
                }
                if (plugins == null) {
                    return DynamicInvokeResult.notFound();
                }
                for (Object object : plugins.values()) {
                    DynamicObject dynamicObject = asDynamicObject(object).withNotImplementsMissing();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. 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)
Back to top