Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for found$ (0.14 sec)

  1. src/cmd/go/testdata/script/work_nowork.txt

    ! go work use
    stderr '^go: no go\.work file found\n\t\(run ''go work init'' first or specify path using GOWORK environment variable\)$'
    
    ! go work use .
    stderr '^go: no go\.work file found\n\t\(run ''go work init'' first or specify path using GOWORK environment variable\)$'
    
    ! go work edit
    stderr '^go: no go\.work file found\n\t\(run ''go work init'' first or specify path using GOWORK environment variable\)$'
    
    ! go work edit -go=1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 783 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/ws2_32.txt

    [!GOOS:windows] skip
    
    go run .
    stdout 'ws2_32.dll: not found'
    
    go run -tags net .
    stdout 'ws2_32.dll: found'
    
    -- go.mod --
    module m
    
    go 1.21
    
    -- utils.go --
    package main
    
    import (
    	"fmt"
    	"syscall"
    	"unsafe"
    )
    
    func hasModuleHandle() {
    	const ws2_32 = "ws2_32.dll"
    	getModuleHandle := syscall.MustLoadDLL("kernel32.dll").MustFindProc("GetModuleHandleW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:57:32 UTC 2024
    - 730 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

            for (String candidate : items) {
                boolean found = false;
    
                if (candidate.equalsIgnoreCase(pattern)) {
                    caseInsensitiveMatches.add(candidate);
                    found = true;
                }
                if (camelCasePattern.matcher(candidate).matches()) {
                    caseSensitiveCamelCaseMatches.add(candidate);
                    found = true;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/port.go

    }
    
    // ForName returns the first port found with the given name.
    func (ps Ports) ForName(name string) (Port, bool) {
    	for _, port := range ps {
    		if name == port.Name {
    			return port, true
    		}
    	}
    	return Port{}, false
    }
    
    // MustForName calls ForName and panics if not found.
    func (ps Ports) MustForName(name string) Port {
    	p, found := ps.ForName(name)
    	if !found {
    		panic("port does not exist for name " + name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. pkg/scheduler/util/pod_resources.go

    		// Override if un-set, but not if explicitly set to zero
    		if _, found := (*requests)[v1.ResourceCPU]; !found && nonZero {
    			return *resource.NewMilliQuantity(DefaultMilliCPURequest, resource.DecimalSI)
    		}
    		return requests.Cpu().DeepCopy()
    	case v1.ResourceMemory:
    		// Override if un-set, but not if explicitly set to zero
    		if _, found := (*requests)[v1.ResourceMemory]; !found && nonZero {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/ASN1Util.java

                if (b < 31)
                {
                    if (b < 0)
                    {
                        throw new EOFException("EOF found inside tag value.");
                    }
                    throw new IOException("corrupted stream - high tag number < 31 found");
                }
    
                tagNo = b & 0x7f;
    
                // X.690-0207 8.1.2.4.2
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/main/resources/CLMessages.properties

    ECL0044=Class not found, details are {0}
    ECL0048=The constructor of {0} for arguments({1}) not found
    ECL0049=The method({1}) of {0} not found
    ECL0050=Can not parse, because {0}
    ECL0051=Can not parse of ({0})
    ECL0053=Bad parser configuration, because {0}
    ECL0054=SAXException occurred, because {0}
    ECL0055=Resource({0}) not found
    ECL0057=Method({1}) of class({0}) not found
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/math/rand/auto_test.go

    	// but this is good enough and not significantly more
    	// likely to have a false positive.
    	Seed(1)
    	found := 0
    	for i := 0; i < 1000; i++ {
    		x := Int63()
    		if x == out[found] {
    			found++
    			if found == len(out) {
    				t.Fatalf("found unseeded output in Seed(1) output")
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.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: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder_test.go

    				Kind:  "MyNewCRD",
    			},
    		}, nil
    	}
    	finder := NewCRDFinder(getter)
    
    	if found, _ := finder.HasCRD(schema.GroupKind{Group: "crd.com", Kind: "MyCRD"}); !found {
    		t.Fatalf("Failed to find CRD MyCRD")
    	}
    	if found, _ := finder.HasCRD(schema.GroupKind{Group: "crd.com", Kind: "Random"}); found {
    		t.Fatalf("Found crd Random that doesn't exist")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top