Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for found$ (0.22 sec)

  1. security/pkg/pki/util/san_test.go

    				{Id: asn1.ObjectIdentifier{2, 5, 29, 17}},
    				{Id: asn1.ObjectIdentifier{3, 2, 1}},
    			},
    			found: true,
    		},
    	}
    
    	for id, tc := range testCases {
    		found := ExtractSANExtension(tc.exts) != nil
    		if found != tc.found {
    			t.Errorf("Case %q: expect `found` to be %t but got %t", id, tc.found, found)
    		}
    	}
    }
    
    func TestExtractIDs(t *testing.T) {
    	id := "test.id"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/cmd/nm/nm_test.go

    		}
    		name := f[2]
    		if addr, found := names[name]; found {
    			if want, have := addr, "0x"+f[0]; have != want {
    				if !relocated(f[1]) {
    					t.Errorf("want %s address for %s symbol, but have %s", want, name, have)
    				}
    			}
    			delete(names, name)
    		}
    		if _, found := dups[name]; found {
    			t.Errorf("duplicate name of %q is found", name)
    		}
    		if stype, found := runtimeSyms[name]; found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. pkg/kubelet/server/stats/fs_resource_analyzer.go

    		if value, found := oldCache[pod.GetUID()]; !found {
    			newCache[pod.GetUID()] = newVolumeStatCalculator(s.statsProvider, s.calcPeriod, pod, s.eventRecorder).StartOnce()
    		} else {
    			newCache[pod.GetUID()] = value
    		}
    	}
    
    	// Stop entries for pods that have been deleted
    	for uid, entry := range oldCache {
    		if _, found := newCache[uid]; !found {
    			entry.StopOnce()
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. src/go/types/methodset.go

    	// if f is not in the set, add it
    	if !multiples {
    		// TODO(gri) A found method may not be added because it's not in the method set
    		// (!indirect && f.hasPtrRecv()). A 2nd method on the same level may be in the method
    		// set and may not collide with the first one, thus leading to a false positive.
    		// Is that possible? Investigate.
    		if _, found := s[key]; !found && (indirect || !f.hasPtrRecv()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. cmd/net_test.go

    			t.Fatalf("error: expected = %v, got = %v", testCase.expectedErr, err)
    		}
    
    		if testCase.expectedIPList != nil {
    			var found bool
    			for _, ip := range ipList.ToSlice() {
    				if testCase.expectedIPList.Contains(ip) {
    					found = true
    				}
    			}
    			if !found {
    				t.Fatalf("host: expected = %v, got = %v", testCase.expectedIPList, ipList)
    			}
    		}
    	}
    }
    
    // Tests finalize api endpoints.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/go/types/commentMap_test.go

    			want := fmt.Sprintf(`"%d:%d"`, line, err.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:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/alias.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
    - 2.3K bytes
    - Viewed (0)
  8. pkg/kubelet/reason_cache_test.go

    	name := result.Target.(string)
    	actualReason, ok := cache.Get(uid, name)
    	if ok && !found {
    		t.Fatalf("unexpected cache hit: %v, %q", actualReason.Err, actualReason.Message)
    	}
    	if !ok && found {
    		t.Fatalf("corresponding reason info not found")
    	}
    	if !found {
    		return
    	}
    	reason := result.Error
    	message := result.Message
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 03:33:06 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/traceback_ancestors.go

    	}
    	recurseThenCallGo(w, frames, goroutines-1, main)
    }
    
    func goroutineID() string {
    	buf := make([]byte, 128)
    	runtime.Stack(buf, false)
    	prefix := []byte("goroutine ")
    	var found bool
    	if buf, found = bytes.CutPrefix(buf, prefix); !found {
    		panic(fmt.Sprintf("expected %q at beginning of traceback:\n%s", prefix, buf))
    	}
    	id, _, _ := bytes.Cut(buf, []byte(" "))
    	return string(id)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 17:14:59 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/MethodInvocation.java

            found = true;
            this.result = result;
        }
    
        @Nullable
        public Object getResult() {
            return result;
        }
    
        public String getName() {
            return name;
        }
    
        public Class<?>[] getParameterTypes() {
            return parameterTypes;
        }
    
        public boolean found() {
            return found;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top