Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for addTab (0.11 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

        }
    
        public void setSeed(final String seed) {
            this.seed = seed;
        }
    
        public void setWindowSize(final int windowSize) {
            this.windowSize = windowSize;
        }
    
        public void addTag(final String tag) {
            this.tags.add(tag);
        }
    
        public void addRole(final String role) {
            this.roles.add(role);
        }
    
        public void addField(final String field) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		),
    	}
    
    	logger := klog.FromContext(ctx)
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			tc.addJob(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			tc.updateJob(logger, oldObj, newObj)
    		},
    	})
    
    	tc.jLister = jobInformer.Lister()
    	tc.jListerSynced = jobInformer.Informer().HasSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/math/big/nat.go

    		t = t.mul(x0, y1) // update t so we don't lose t's underlying array
    		addAt(z, t, k)
    
    		// add xi*y0<<i, xi*y1*b<<(i+k)
    		y0 := y0.norm()
    		for i := k; i < len(x); i += k {
    			xi := x[i:]
    			if len(xi) > k {
    				xi = xi[:k]
    			}
    			xi = xi.norm()
    			t = t.mul(xi, y0)
    			addAt(z, t, i)
    			t = t.mul(xi, y1)
    			addAt(z, t, i+k)
    		}
    
    		putNat(tp)
    	}
    
    	return z.norm()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/runtime/cgocheck.go

    	skipMask := off / goarch.PtrSize / 8
    	skipBytes := skipMask * goarch.PtrSize * 8
    	ptrmask := addb(gcbits, skipMask)
    	src = add(src, skipBytes)
    	off -= skipBytes
    	size += off
    	var bits uint32
    	for i := uintptr(0); i < size; i += goarch.PtrSize {
    		if i&(goarch.PtrSize*8-1) == 0 {
    			bits = uint32(*ptrmask)
    			ptrmask = addb(ptrmask, 1)
    		} else {
    			bits >>= 1
    		}
    		if off > 0 {
    			off -= goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

        }
    
        public void setSize(final int size) {
            this.size = size;
        }
    
        public void setQuery(final String query) {
            this.query = query;
        }
    
        public void addTag(final String tag) {
            this.tags.add(tag);
        }
    
        public void addRole(final String role) {
            this.roles.add(role);
        }
    
        public void addField(final String field) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    				if colonPos == -1 {
    					panic(fmt.Sprintf("Line %d (%s) in file %s expected to contain '<number>:' but does not.\n", i+1, l, filename))
    				}
    				h.add(lastfile, l[0:colonPos], l[colonPos+1:])
    			} else {
    				h.addVar(l)
    			}
    		}
    	}
    }
    
    // add appends file (name), line (number) and text (string) to the history,
    // provided that the file+line combo does not repeat the previous position,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. src/math/big/natdiv.go

    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    		if qhatv.cmp(uu.norm()) > 0 {
    			panic("impossible")
    		}
    		c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
    		if c > 0 {
    			subVW(uu[len(qhatv):], uu[len(qhatv):], c)
    		}
    		addAt(z, qhat, j-B)
    		j -= B
    	}
    
    	// TODO(rsc): Rewrite loop as described above and delete all this code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2.go

    		cronJobListerSynced: cronJobsInformer.Informer().HasSynced,
    		now:                 time.Now,
    	}
    
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    jm.addJob,
    		UpdateFunc: jm.updateJob,
    		DeleteFunc: jm.deleteJob,
    	})
    
    	cronJobsInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.enqueueController(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag));
                final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
                if (StringUtil.isNotBlank(key)) {
                    builder.addTag(key);
                }
    
                builder.addKind(SuggestItem.Kind.USER.toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    			for j := uintptr(0); j < 8; j++ {
    				print("        ", add(scanp, (i+j)*goarch.PtrSize), ":", ptrnames[bv.ptrbit(i+j)], ":", hex(*(*uintptr)(add(scanp, (i+j)*goarch.PtrSize))), " # ", i, " ", *addb(bv.bytedata, i/8), "\n")
    			}
    		}
    		b := *(addb(bv.bytedata, i/8))
    		for b != 0 {
    			j := uintptr(sys.TrailingZeros8(b))
    			b &= b - 1
    			pp := (*uintptr)(add(scanp, (i+j)*goarch.PtrSize))
    		retry:
    			p := *pp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top