Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for keybox (0.17 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            if (keyObj instanceof final UrlQueue<?> urlQueue) {
                return OptionalThing.of(urlQueue.getId().toString());
            }
            if (keyObj instanceof final StatsKeyObject statsKey) {
                return OptionalThing.of(statsKey.getId());
            }
            if (keyObj instanceof final String key) {
                return OptionalThing.of(key);
            }
            if (keyObj instanceof final Number key) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            final CrawlerStatsHelper crawlerStatsHelper = ComponentUtil.getCrawlerStatsHelper();
            final StatsKeyObject keyObj = paramMap.get(Constants.CRAWLER_STATS_KEY) instanceof final StatsKeyObject sko ? sko : null;
            if (keyObj != null) {
                crawlerStatsHelper.runOnThread(keyObj);
            }
            final DataStoreParams localParams = paramMap.newInstance();
            executor.execute(() -> {
                try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              session.masterSecret?.encoded?.toByteString()
                ?.hex()
    
            if (masterSecretHex != null) {
              val keyLog = "CLIENT_RANDOM $random $masterSecretHex"
    
              if (verbose) {
                println(keyLog)
              }
              logFile.appendText("$keyLog\n")
            }
          }
    
          random = null
        }
    
        enum class Launch {
          Gui,
          CommandLine,
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                    }
                    scope = annotation;
                }
            }
            return scope;
        }
    
        public static <T> Key<T> keyOf(@Nullable Type container, Type type, AnnotatedElement annotatedElement) {
            return Key.ofType(
                    container != null ? Types.bind(type, Types.getAllTypeBindings(container)) : type,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/attach_detach_controller.go

    func (adc *attachDetachController) processNextItem(logger klog.Logger) bool {
    	keyObj, shutdown := adc.pvcQueue.Get()
    	if shutdown {
    		return false
    	}
    	defer adc.pvcQueue.Done(keyObj)
    
    	if err := adc.syncPVCByKey(logger, keyObj); err != nil {
    		// Rather than wait for a full resync, re-add the key to the
    		// queue to be processed.
    		adc.pvcQueue.AddRateLimited(keyObj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. src/hash/maphash/smhasher_test.go

    func TestSmhasherSanity(t *testing.T) {
    	t.Parallel()
    	r := rand.New(rand.NewSource(1234))
    	const REP = 10
    	const KEYMAX = 128
    	const PAD = 16
    	const OFFMAX = 16
    	for k := 0; k < REP; k++ {
    		for n := 0; n < KEYMAX; n++ {
    			for i := 0; i < OFFMAX; i++ {
    				var b [KEYMAX + OFFMAX + 2*PAD]byte
    				var c [KEYMAX + OFFMAX + 2*PAD]byte
    				randBytes(r, b[:])
    				randBytes(r, c[:])
    				copy(c[PAD+i:PAD+i+n], b[PAD:PAD+n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    // ignoreMap discards the data for a map value with no destination.
    func (dec *Decoder) ignoreMap(state *decoderState, keyOp, elemOp decOp) {
    	n := int(state.decodeUint())
    	keyInstr := &decInstr{keyOp, 0, nil, errors.New("no error")}
    	elemInstr := &decInstr{elemOp, 0, nil, errors.New("no error")}
    	for i := 0; i < n; i++ {
    		keyOp(keyInstr, state, noValue)
    		elemOp(elemInstr, state, noValue)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    			for _, v := range vs {
    				s.labelX = append(s.labelX,
    					label{
    						keyX: addString(strings, k),
    						strX: addString(strings, v),
    					},
    				)
    			}
    		}
    		var numKeys []string
    		for k := range s.NumLabel {
    			numKeys = append(numKeys, k)
    		}
    		sort.Strings(numKeys)
    		for _, k := range numKeys {
    			keyX := addString(strings, k)
    			vs := s.NumLabel[k]
    			units := s.NumUnit[k]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/internal/profile/encode.go

    					Label{
    						keyX: addString(strings, k),
    						strX: addString(strings, v),
    					},
    				)
    			}
    		}
    		var numKeys []string
    		for k := range s.NumLabel {
    			numKeys = append(numKeys, k)
    		}
    		sort.Strings(numKeys)
    		for _, k := range numKeys {
    			vs := s.NumLabel[k]
    			for _, v := range vs {
    				s.labelX = append(s.labelX,
    					Label{
    						keyX: addString(strings, k),
    						numX: v,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. src/runtime/hash_test.go

    func TestSmhasherSanity(t *testing.T) {
    	r := rand.New(rand.NewSource(1234))
    	const REP = 10
    	const KEYMAX = 128
    	const PAD = 16
    	const OFFMAX = 16
    	for k := 0; k < REP; k++ {
    		for n := 0; n < KEYMAX; n++ {
    			for i := 0; i < OFFMAX; i++ {
    				var b [KEYMAX + OFFMAX + 2*PAD]byte
    				var c [KEYMAX + OFFMAX + 2*PAD]byte
    				randBytes(r, b[:])
    				randBytes(r, c[:])
    				copy(c[PAD+i:PAD+i+n], b[PAD:PAD+n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top