Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for found$ (0.38 sec)

  1. src/internal/bytealg/index_s390x.s

    index2to16loop:
    	// unrolled 2x
    	VLL	R4, (R7), V1
    	VLL	R4, 1(R7), V2
    	VCEQGS	V0, V1, V3
    	BEQ	found
    	MOVD	$1(R7), R7
    	VCEQGS	V0, V2, V4
    	BEQ	found
    	MOVD	$1(R7), R7
    	CMPBLT	R7, R2, index2to16loop
    	CMPBGT	R7, R2, notfound
    index2to16tail:
    	VLL	R4, (R7), V1
    	VCEQGS	V0, V1, V2
    	BEQ	found
    	BR	notfound
    
    index17plus:
    	CMPBGT	R4, $31, index33plus
    	SUB	$16, R4, R0
    	VLL	R0, 16(R3), V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  2. src/os/user/cgo_lookup_syscall.go

    func _C_getpwnam_r(name *_C_char, buf *_C_char, size _C_size_t) (pwd _C_struct_passwd, found bool, errno syscall.Errno) {
    	var result *_C_struct_passwd
    	errno = unix.Getpwnam(name, &pwd, buf, size, &result)
    	return pwd, result != nil, errno
    }
    
    func _C_getpwuid_r(uid _C_uid_t, buf *_C_char, size _C_size_t) (pwd _C_struct_passwd, found bool, errno syscall.Errno) {
    	var result *_C_struct_passwd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/AbstractCachedIndex.java

            assertKeyNotNull(key);
    
            V result = cacheAccessCoordinator.useCache(() -> {
                V found = getIndexedCache().getIfPresent(key);
                if (found == null) {
                    return null;
                } else if (found.isMissing() || found.getCachedFile().exists()) {
                    return found;
                } else {
                    clear(key);
                    return null;
                }
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensions.kt

     *
     * If none found it will throw an [UnknownDomainObjectException].
     * If the extension is found but cannot be cast to the expected type it will throw an [IllegalStateException].
     *
     * @param name extension name
     * @return extension, never null
     * @throws [UnknownDomainObjectException] When the given extension is not found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/PolymorphicDomainObjectContainerConfigureDelegate.java

        @Override
        protected DynamicInvokeResult _configure(String name) {
            return DynamicInvokeResult.found(_container.create(name));
        }
    
        @Override
        protected DynamicInvokeResult _configure(String name, Object[] params) {
            if (params.length == 1 && params[0] instanceof Closure) {
                return DynamicInvokeResult.found(_container.create(name, (Closure<?>) params[0]));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaInfo.java

         */
        File getJavaExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavacExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. test/typeparam/orderedmap.go

    		panic(fmt.Sprintf("key %q unexpectedly not present", []byte("c")))
    	}
    
    	if v, found := m.Find([]byte("a")); !found {
    		panic(fmt.Sprintf("did not find %q", []byte("a")))
    	} else if v != 'a' {
    		panic(fmt.Sprintf("key %q returned wrong value %c, expected %c", []byte("a"), v, 'a'))
    	}
    	if v, found := m.Find([]byte("c")); !found {
    		panic(fmt.Sprintf("did not find %q", []byte("c")))
    	} else if v != 'x' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/DynamicInvokeResult.java

        private static final DynamicInvokeResult NULL = new DynamicInvokeResult(null);
    
        public static DynamicInvokeResult found(@Nullable Object value) {
            return value == null ? found() : new DynamicInvokeResult(value);
        }
    
        public static DynamicInvokeResult found() {
            return DynamicInvokeResult.NULL;
        }
    
        public static DynamicInvokeResult notFound() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/pseudo_test.go

    		{"TEXT", "$\"foo\", 0, $1", "TEXT symbol \"<erroneous symbol>\" must be a symbol(SB)"},
    		{"TEXT", "$0É:0, 0, $1", "expected end of operand, found É"}, // Issue #12467.
    		{"TEXT", "$:0:(SB, 0, $1", "expected '(', found 0"},          // Issue 12468.
    		{"TEXT", "@B(SB),0,$0", "expected '(', found B"},             // Issue 23580.
    		{"TEXT", "foo<ABIInternal>(SB),0", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top