Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for nfound (0.28 sec)

  1. src/internal/bytealg/index_ppc64x.s

    	MOVD R7, R3    // Return byte where found
    	RET
    found4:
    	ADD $1, R7     // found from unrolled loop at index 3
    found3:
    	ADD $1, R7     // found from unrolled loop at index 2
    found2:
    	ADD $1, R7     // found from unrolled loop at index 1
    found:                 // found at index 0
    	SUB  R3, R7    // Return byte where found
    	MOVD R7, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  2. pilot/test/xdstest/validate.go

    		}
    	}
    }
    
    func ValidateClusters(t testing.TB, ls []*cluster.Cluster) {
    	found := sets.New[string]()
    	for _, l := range ls {
    		if found.Contains(l.Name) {
    			t.Errorf("duplicate cluster name %v", l.Name)
    		}
    		found.Insert(l.Name)
    		ValidateCluster(t, l)
    	}
    }
    
    func ValidateCluster(t testing.TB, c *cluster.Cluster) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtraPropertiesDynamicObjectAdapter.java

                return DynamicInvokeResult.found(extension.get(name));
            }
            return DynamicInvokeResult.notFound();
        }
    
        @Override
        public DynamicInvokeResult trySetProperty(String name, @Nullable Object value) {
            if (extension.has(name)) {
                extension.set(name, value);
                return DynamicInvokeResult.found();
            }
            return DynamicInvokeResult.notFound();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/math/const_test.go

    	}
    	if v := uint32(MaxUint32); v+1 != 0 {
    		t.Errorf("MaxUint32 should wrap around to zero: %d", v+1)
    	}
    	if v := uint64(MaxUint64); v+1 != 0 {
    		t.Errorf("MaxUint64 should wrap around to zero: %d", v+1)
    	}
    }
    
    func TestMaxInt(t *testing.T) {
    	if v := int(MaxInt); v+1 != MinInt {
    		t.Errorf("MaxInt should wrap around to MinInt: %d", v+1)
    	}
    	if v := int8(MaxInt8); v+1 != MinInt8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 22:44:33 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * are in the version listing case, or module version case.
     * <p></p>
     * Filtering is done by calling the {@link #notFound()} method: as soon as you know a module
     * cannot be found in a repository, call this method. Otherwise, Gradle will perform a request
     * to find out. It doesn't matter if the module is eventually not found, as Gradle would handle
     * this appropriately by looking at the next repository: the consequence is just a remote call.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_riscv64.s

    	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
    	MOV	X10, X13		// store base for later
    	ADD	X10, X11		// end
    	SUB	$1, X10
    
    loop:
    	ADD	$1, X10
    	BEQ	X10, X11, notfound
    	MOVBU	(X10), X14
    	BNE	X12, X14, loop
    
    	SUB	X13, X10		// remove base
    	RET
    
    notfound:
    	MOV	$-1, X10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 919 bytes
    - Viewed (0)
  7. src/internal/bytealg/indexbyte_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·IndexByte(SB),NOSPLIT,$0-40
    	MOVV	b_base+0(FP), R1
    	MOVV	b_len+8(FP), R2
    	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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 985 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/ConfigureDelegate.java

            return _original_owner;
        }
    
        protected DynamicInvokeResult _configure(String name, Object[] params) {
            return DynamicInvokeResult.notFound();
        }
    
        protected DynamicInvokeResult _configure(String name) {
            return DynamicInvokeResult.notFound();
        }
    
        @Nullable
        @Override
        public Object invokeMethod(String name, Object paramsObj) {
            Object[] params = (Object[]) paramsObj;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_bad_import.txt

    stderr 'no required module provides package example.com/notfound; to add it:\n\tgo get example.com/notfound'
    ! stdout error
    ! stdout incomplete
    
    # ...but listing with -e should succeed.
    go list -e -f '{{if .Error}}error{{end}} {{if .Incomplete}}incomplete{{end}}' example.com/notfound
    stdout error
    stdout incomplete
    
    
    # The pattern "all" should match only packages that actually exist,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    		// We only merge if the found service is in the same namespace as the one we're trying to add
    		copied := foundSvc.svc.DeepCopy()
    		for _, p := range s.Ports {
    			found := false
    			for _, osp := range copied.Ports {
    				if p.Port == osp.Port {
    					found = true
    					break
    				}
    			}
    			if !found {
    				copied.Ports = append(copied.Ports, p)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top