Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 342 for seem (0.04 sec)

  1. pkg/apis/batch/validation/validation.go

    		path := fldPath.Child("uncountedTerminatedPods")
    		seen := sets.New[types.UID]()
    		for i, k := range status.UncountedTerminatedPods.Succeeded {
    			p := path.Child("succeeded").Index(i)
    			if k == "" {
    				allErrs = append(allErrs, field.Invalid(p, k, "must not be empty"))
    			} else if seen.Has(k) {
    				allErrs = append(allErrs, field.Duplicate(p, k))
    			} else {
    				seen.Insert(k)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    	// happen at sa[i´] for some i´ > i, that is, in the portion of sa we have
    	// yet to scan. A single pass therefore sees indexes j, j-1, j-2, j-3,
    	// and so on, in sorted but not necessarily adjacent order, until it finds
    	// one preceded by an index of type S, at which point it must stop.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Unsupported operation."));
                return;
            }
    
            final String seed = request.getParameter("seed");
            String[] tags = SearchRequestParams.getParamValueArray(request, "label");
            final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
            if (StringUtil.isNotBlank(key)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    	} else {
    		seen := map[string]bool{}
    		hasAcceptedVersion := false
    		for i, v := range versions {
    			if seen[v] {
    				allErrors = append(allErrors, field.Invalid(fldPath.Index(i), v, "duplicate version"))
    				continue
    			}
    			seen[v] = true
    			for _, errString := range utilvalidation.IsDNS1035Label(v) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    			// be 3 (see also Checked.arrayLength and go.dev/issue/27346).
    			if utyp.len < 0 {
    				utyp.len = n
    				// e.Type is missing if we have a composite literal element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	// checking the OnList attribute in "putdie", but that strategy
    	// was not friendly for concurrency.
    	seen := loader.MakeBitmap(d.ldr.NSym())
    	for _, s := range infoSec.syms {
    		if seen.Has(s) {
    			log.Fatalf("symbol %s listed multiple times", d.ldr.SymName(s))
    		}
    		seen.Set(s)
    	}
    }
    
    func (d *dwctxt) collectUnitLocs(u *sym.CompilationUnit) []loader.Sym {
    	syms := []loader.Sym{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

            break;
          }
    
          auto insert_result = frame_to_pred.insert({frame_name, merge_pred});
          if (!insert_result.second) {
            // If we have already seen this frame name, verify the predicate is the
            // same as the previously seen one's.
            Predicate* curr_andrec = merge_pred;
            Predicate* prev_andrec = insert_result.first->second;
            if (curr_andrec != prev_andrec) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * action execution.</p>
         */
        private void runActionInHierarchy(Action<DefaultConfiguration> action) {
            Set<Configuration> seen = new HashSet<>();
            Queue<Configuration> remaining = new ArrayDeque<>();
            remaining.add(this);
    
            while (!remaining.isEmpty()) {
                Configuration current = remaining.remove();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    			// be 3 (see also Checked.arrayLength and go.dev/issue/27346).
    			if utyp.len < 0 {
    				utyp.len = n
    				// e.Type is missing if we have a composite literal element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				pdbLister: getPDBLister(informerFactory),
    				args:      *tt.args,
    			}
    
    			// Using 4 as a seed source to test getOffsetAndNumCandidates() deterministically.
    			// However, we need to do it after informerFactory.WaitforCacheSync() which might
    			// set a seed.
    			rand.Seed(4)
    			var prevNumFilterCalled int32
    			for cycle, pod := range tt.testPods {
    				state := framework.NewCycleState()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top