Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/syntax/testing_test.go

    			want := fmt.Sprintf(`"%d:%d"`, line, err.Pos.Col())
    			if got != want {
    				t.Errorf("%v: got msg %q; want %q", err, got, want)
    				continue
    			}
    			found++
    		}
    	}
    
    	want := strings.Count(src, " ERROR ")
    	if found != want {
    		t.Errorf("CommentMap got %d errors; want %d", found, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/os/user/cgo_lookup_cgo.go

    static struct passwd mygetpwuid_r(int uid, char *buf, size_t buflen, int *found, int *perr) {
    	struct passwd pwd;
    	struct passwd *result;
    	memset (&pwd, 0, sizeof(pwd));
    	*perr = getpwuid_r(uid, &pwd, buf, buflen, &result);
    	*found = result != NULL;
    	return pwd;
    }
    
    static struct passwd mygetpwnam_r(const char *name, char *buf, size_t buflen, int *found, int *perr) {
    	struct passwd pwd;
    	struct passwd *result;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 17:45:51 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. cmd/object_api_suite_test.go

    	if err == nil {
    		t.Fatal("Expected error but found nil")
    	}
    	if err.Error() != "Bucket not found: bucket1" {
    		t.Errorf("%s: Expected the error msg to be `%s`, but instead found `%s`", instanceType, "Bucket not found: bucket1", err.Error())
    	}
    }
    
    // Wrapper for calling testBucketRecreateFails for both Erasure and FS.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/math/rand/v2/auto_test.go

    	// but this is good enough and not significantly more
    	// likely to have a false positive.
    	r := New(NewPCG(1, 0))
    	found := 0
    	for i := 0; i < 1000; i++ {
    		x := r.Int64()
    		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: Mon Oct 30 17:09:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/diag/message_test.go

    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST-0042", "Cheese type not found: %q")
    	m := NewMessage(mt, nil, "Feta")
    
    	g.Expect(m.String()).To(Equal(`Error [IST-0042] Cheese type not found: "Feta"`))
    }
    
    func TestMessageWithResource_String(t *testing.T) {
    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST-0042", "Cheese type not found: %q")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStoreTest.groovy

                exists() >> false
            }
            def found = Stub(File)
    
            1 * writeStore.whereIs(key, "checksum") >> { missing }
            1 * readStore.whereIs(key, "checksum") >> { found }
    
            expect:
            twoStageStore.whereIs(key, "checksum") == found
        }
    
        def "whereIs uses file found in write store"() {
            def found = Stub(File) {
                exists() >> true
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/invalid.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: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. test/varinit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test var x = x + 1 works.
    
    package main
    
    func main() {
    	var x int = 1
    	if x != 1 {
    		print("found ", x, ", expected 1\n")
    		panic("fail")
    	}
    	{
    		var x int = x + 1
    		if x != 2 {
    			print("found ", x, ", expected 2\n")
    			panic("fail")
    		}
    	}
    	{
    		x := x + 1
    		if x != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 509 bytes
    - Viewed (0)
  9. operator/pkg/name/name_test.go

    				t.Fatal(err)
    			}
    
    			if !reflect.DeepEqual(got, wantTree) {
    				t.Errorf("Find() got = %v, want %v", got, tt.want)
    			}
    			if found != tt.found {
    				t.Errorf("Find() found = %v, want %v", found, tt.found)
    			}
    		})
    	}
    }
    
    func TestManifestMap_Consolidated(t *testing.T) {
    	tests := []struct {
    		name string
    		mm   ManifestMap
    		want map[string]string
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. 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)
Back to top