Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for lives (0.11 sec)

  1. cmd/kube-apiserver/app/options/options.go

    func (s *ServerRunOptions) Flags() (fss cliflag.NamedFlagSets) {
    	s.Options.AddFlags(&fss)
    	s.CloudProvider.AddFlags(fss.FlagSet("cloud provider"))
    
    	// Note: the weird ""+ in below lines seems to be the only way to get gofmt to
    	// arrange these text blocks sensibly. Grrr.
    	fs := fss.FlagSet("misc")
    
    	fs.BoolVar(&s.AllowPrivileged, "allow-privileged", s.AllowPrivileged,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"url": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. api/openapi-spec/swagger.json

            },
            "url": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. pkg/proxy/nftables/helpers_test.go

    func sortNFTablesTransaction(tx string) string {
    	lines := strings.Split(tx, "\n")
    
    	// strip blank lines and comments
    	for i := 0; i < len(lines); {
    		if lines[i] == "" || lines[i][0] == '#' {
    			lines = append(lines[:i], lines[i+1:]...)
    		} else {
    			i++
    		}
    	}
    
    	// sort remaining lines
    	sort.SliceStable(lines, func(i, j int) bool {
    		li := lines[i]
    		wi := strings.Split(li, " ")
    		lj := lines[j]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    //
    // The purpose of this is to make it easier to read tests.
    func FixTabsOrDie(in string) string {
    	lines := bytes.Split([]byte(in), []byte{'\n'})
    	if len(lines[0]) == 0 && len(lines) > 1 {
    		lines = lines[1:]
    	}
    	// Create prefix made of tabs that we want to remove.
    	var prefix []byte
    	for _, c := range lines[0] {
    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// Look for a Pod using pvc in the Informer's cache. If one is found the
    	// correct decision to keep pvc is taken without doing an expensive live
    	// list.
    	logger := klog.FromContext(ctx)
    	if inUse, err := c.askInformer(logger, pvc); err != nil {
    		// No need to return because a live list will follow.
    		logger.Error(err, "")
    	} else if inUse {
    		return true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}
    }
    
    func logLines(logs string) []string {
    	if len(logs) == 0 {
    		return nil
    	}
    
    	lines := strings.Split(strings.TrimSpace(logs), "\n")
    	for i, line := range lines {
    		lines[i] = strings.SplitN(line, "] ", 2)[1]
    	}
    	return lines
    }
    
    func TestGetEncryptionConfigHash(t *testing.T) {
    	t.Parallel()
    
    	tests := []struct {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    	metrics.IPTablesRulesTotal.WithLabelValues(string(utiliptables.TableFilter)).Set(float64(proxier.filterRules.Lines()))
    	metrics.IPTablesRulesLastSync.WithLabelValues(string(utiliptables.TableFilter)).Set(float64(proxier.filterRules.Lines()))
    	metrics.IPTablesRulesTotal.WithLabelValues(string(utiliptables.TableNAT)).Set(float64(proxier.natRules.Lines() + skippedNatRules.Lines() - deletedChains))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/kubelet.go

    		&compbasemetrics.HistogramOpts{
    			Subsystem: metrics.KubeletSubsystem,
    			Name:      "certificate_manager_server_rotation_seconds",
    			Help:      "Histogram of the number of seconds the previous certificate lived before being rotated.",
    			Buckets: []float64{
    				60,        // 1  minute
    				3600,      // 1  hour
    				14400,     // 4  hours
    				86400,     // 1  day
    				604800,    // 1  week
    				2592000,   // 1  month
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    		nodeName, _ := util.GetTargetNodeName(pod)
    
    		lines = append(lines, fmt.Sprintf("node=%s current=%-5t ready=%-5t age=%-4d pod=%s now=%d available=%d",
    			nodeName,
    			hash == pod.Labels[apps.ControllerRevisionHashLabelKey],
    			ready,
    			now.Unix(),
    			pod.Name,
    			pod.CreationTimestamp.Unix(),
    			readyLast.Unix(),
    		))
    	}
    	sort.Strings(lines)
    	for _, line := range lines {
    		logger.Info(line)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top