Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sois (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				excluded.Delete(check.Name())
    				fmt.Fprintf(&individualCheckOutput, "[+]%s excluded: ok\n", check.Name())
    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray_test.go

    				}
    			}
    		}
    		x[:cap(x)][len(x)] = 0 // for sais.New
    		testSA(t, x, build)
    	})
    
    	t.Run("exhaustive2", func(t *testing.T) {
    		// All inputs over {0,1} up to length 21.
    		// Runs in about 10 seconds on my laptop.
    		x := make([]byte, 30)
    		numFail := 0
    		for n := 0; n <= 21; n++ {
    			if n > 12 && testing.Short() {
    				break
    			}
    			x[n] = 0 // for sais.New
    			testRec(t, x[:n], 0, 2, &numFail, build)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server.go

    	"k8s.io/component-base/logs"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	"k8s.io/component-base/metrics/features"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/prometheus/slis"
    	"k8s.io/component-base/term"
    	"k8s.io/component-base/version"
    	"k8s.io/component-base/version/verflag"
    	"k8s.io/klog/v2"
    	schedulerserverconfig "k8s.io/kubernetes/cmd/kube-scheduler/app/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    		}
    	}
    
    	if c.EnableMetrics {
    		if c.EnableProfiling {
    			routes.MetricsWithReset{}.Install(s.Handler.NonGoRestfulMux)
    			slis.SLIMetricsWithReset{}.Install(s.Handler.NonGoRestfulMux)
    		} else {
    			routes.DefaultMetrics{}.Install(s.Handler.NonGoRestfulMux)
    			slis.SLIMetrics{}.Install(s.Handler.NonGoRestfulMux)
    		}
    	}
    
    	routes.Version{Version: c.Version}.Install(s.Handler.GoRestfulContainer)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server.go

    	"k8s.io/component-base/logs"
    	compbasemetrics "k8s.io/component-base/metrics"
    	metricsfeatures "k8s.io/component-base/metrics/features"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/prometheus/slis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/cri-client/pkg/util"
    	podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1"
    	podresourcesapiv1alpha1 "k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top