Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for found$ (0.19 sec)

  1. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	found := sets.NewString()
    	count := 0
    	for r.Free() > 0 {
    		ip, err := r.AllocateNext()
    		if err != nil {
    			t.Fatalf("error @ free: %d count: %d: %v", r.Free(), count, err)
    		}
    		count++
    		if found.Has(ip.String()) {
    			t.Fatalf("allocated %s twice: %d", ip, count)
    		}
    		found.Insert(ip.String())
    	}
    	if count != 14 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/toolchain/path_windows.go

    	return v, true
    }
    
    // cutExt looks for any of the known extensions at the end of file.
    // If one is found, cutExt returns the file name with the extension trimmed,
    // the extension itself, and true to signal that an extension was found.
    // Otherwise cutExt returns file, "", false.
    func cutExt(file string, exts []string) (name, ext string, found bool) {
    	i := strings.LastIndex(file, ".")
    	if i < 0 {
    		return file, "", false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/io/ioutil/ioutil_test.go

    			foundFile = true
    		case dir.IsDir() && dir.Name() == "ioutil":
    			foundSubDir = true
    		}
    	}
    	if !foundFile {
    		t.Fatalf("ReadDir %s: io_test.go file not found", dirname)
    	}
    	if !foundSubDir {
    		t.Fatalf("ReadDir %s: ioutil directory not found", dirname)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/os/user/user.go

    	Name string // group name
    }
    
    // UnknownUserIdError is returned by [LookupId] when a user cannot be found.
    type UnknownUserIdError int
    
    func (e UnknownUserIdError) Error() string {
    	return "user: unknown userid " + strconv.Itoa(int(e))
    }
    
    // UnknownUserError is returned by [Lookup] when
    // a user cannot be found.
    type UnknownUserError string
    
    func (e UnknownUserError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    		}
    		if dir == dirEmbed {
    			return dir // type matching embedding direction found
    		}
    		dirOpposite = dir
    	}
    	// return ON if no strong type found, or class opposite to dirEmbed
    	return dirOpposite
    }
    
    // classBeforePair determines which strong types are present before a Bracket
    // Pair. Return R or L if strong type found, otherwise ON.
    func (p *bracketPairer) classBeforePair(loc bracketPair) Class {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/helper.go

    		StartTime: metav1.NewTime(info.Spec.CreationTime),
    		Name:      name,
    	}
    	cstat, found := latestContainerStats(info)
    	if !found {
    		return result
    	}
    
    	cpu, memory := cadvisorInfoToCPUandMemoryStats(info)
    	result.CPU = cpu
    	result.Memory = memory
    	result.Swap = cadvisorInfoToSwapStats(info)
    
    	// NOTE: if they can be found, log stats will be overwritten
    	// by the caller, as it knows more information about the pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtensionsStorage.java

        @Nullable
        public <T> T findByType(TypeOf<T> type) {
            ExtensionHolder<T> found = findHolderByType(type);
            return found != null ? found.get() : null;
        }
    
        private <T> ExtensionHolder<T> getHolderByType(TypeOf<T> type) {
            ExtensionHolder<T> found = findHolderByType(type);
            if (found != null) {
                return found;
            }
            throw new UnknownDomainObjectException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_test.go

    	if err == nil {
    		t.Fatalf("Random doesn't support fieldValidation, yet no error found")
    	}
    
    	err = fieldValidationVerifier.HasSupport(schema.GroupVersionKind{Group: "", Version: "v1", Kind: "List"})
    	if err == nil {
    		t.Fatalf("List does not support fieldValidation, yet no error found")
    	}
    }
    
    type EmptyOpenAPI struct{}
    
    func (EmptyOpenAPI) OpenAPISchema() (*openapi_v2.Document, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/WatchTest.java

                throws InterruptedException, ExecutionException, TimeoutException {
            boolean found = checkInResult(action, name, infos);
            if ( !found ) {
                // retry, the first watch may have already come back before the triggered change was active
                try {
                    setupWatch(w);
                    found = checkInResult(action, name, infos);
                }
                catch ( TimeoutException e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/dwtest/dwtest.go

    func (ex *Examiner) EntryFromOffset(off dwarf.Offset) *dwarf.Entry {
    	if idx, found := ex.idxByOffset[off]; found && idx != -1 {
    		return ex.entryFromIdx(idx)
    	}
    	return nil
    }
    
    // Return the ID that Examiner uses to refer to the DIE at offset off
    func (ex *Examiner) IdxFromOffset(off dwarf.Offset) int {
    	if idx, found := ex.idxByOffset[off]; found {
    		return idx
    	}
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top