Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for Decoder (0.15 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	return func(o *priorityQueueOptions) {
    		o.preEnqueuePluginMap = m
    	}
    }
    
    // WithMetricsRecorder sets metrics recorder.
    func WithMetricsRecorder(recorder metrics.MetricAsyncRecorder) Option {
    	return func(o *priorityQueueOptions) {
    		o.metricsRecorder = recorder
    	}
    }
    
    // WithPluginMetricsSamplePercent sets the percentage of plugin metrics to be sampled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                                .fragmentOffset(fragmentOffset).noMatchSize(noMatchSize).order(order).phraseLimit(phraseLimit))
                        .encoder(encoder)));
                searchRequestBuilder.highlighter(highlightBuilder);
            }
    
            protected void buildSort(final QueryContext queryContext, final QueryFieldConfig queryFieldConfig, final FessConfig fessConfig) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    	for name, testf := range hammer32 {
    		c := make(chan int)
    		var val uint32
    		for i := 0; i < p; i++ {
    			go func() {
    				defer func() {
    					if err := recover(); err != nil {
    						t.Error(err.(string))
    					}
    					c <- 1
    				}()
    				testf(&val, n)
    			}()
    		}
    		for i := 0; i < p; i++ {
    			<-c
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	postExecuteFunc := func() {}
    
    	apfHandler := newApfHandlerWithFilter(t, fakeFilter, time.Minute/4, onExecuteFunc, postExecuteFunc)
    	handler := func(w http.ResponseWriter, r *http.Request) {
    		defer func() {
    			if err := recover(); err == nil {
    				t.Errorf("expected panic, got %v", err)
    			}
    		}()
    		apfHandler.ServeHTTP(w, r)
    	}
    	server := httptest.NewServer(http.HandlerFunc(handler))
    	defer server.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    // with a terminating NUL removed. Unpaired surrogates are decoded
    // using WTF-8 instead of UTF-8 encoding.
    func UTF16ToString(s []uint16) string {
    	maxLen := 0
    	for i, v := range s {
    		if v == 0 {
    			s = s[0:i]
    			break
    		}
    		switch {
    		case v <= rune1Max:
    			maxLen += 1
    		case v <= rune2Max:
    			maxLen += 2
    		default:
    			// r is a non-surrogate that decodes to 3 bytes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	broadcaster.StartStructuredLogging(3)
    	broadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: evtNamespacer.Events("")})
    	recorder := broadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "horizontal-pod-autoscaler"})
    
    	hpaController := &HorizontalController{
    		eventRecorder:                recorder,
    		scaleNamespacer:              scaleNamespacer,
    		hpaNamespacer:                hpaNamespacer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    		panic("can't encode a NaN in AuxInt field")
    	}
    	return int64(math.Float64bits(extend32Fto64F(f)))
    }
    
    // auxTo32F decodes a float32 from the AuxInt value provided.
    func auxTo32F(i int64) float32 {
    	return truncate64Fto32F(math.Float64frombits(uint64(i)))
    }
    
    // auxTo64F decodes a float64 from the AuxInt value provided.
    func auxTo64F(i int64) float64 {
    	return math.Float64frombits(uint64(i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	// a safe point for looking up liveness information. In this panicking case,
    	// the function either doesn't return at all (if it has no defers or if the
    	// defers do not recover) or it returns from one of the calls to
    	// deferproc a second time (if the corresponding deferred func recovers).
    	// In the latter case, use a deferreturn call site as the continuation pc.
    	frame.continpc = frame.pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    		// p1 is less than p2
    		if cmpResult < 0 {
    			return true
    		}
    		// p1 is greater than p2
    		if cmpResult > 0 {
    			return false
    		}
    		// we don't know yet
    	}
    	// the last cmp func is the final decider
    	return ms.cmp[k](p1, p2) < 0
    }
    
    // priority compares pods by Priority, if priority is enabled.
    func priority(p1, p2 *v1.Pod) int {
    	priority1 := corev1helpers.PodPriority(p1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    		eventBroadcaster: eventBroadcaster,
    		eventRecorder:    eventBroadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "daemonset-controller"}),
    		podControl: controller.RealPodControl{
    			KubeClient: kubeClient,
    			Recorder:   eventBroadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "daemonset-controller"}),
    		},
    		crControl: controller.RealControllerRevisionControl{
    			KubeClient: kubeClient,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top