Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for lives (0.04 sec)

  1. pkg/proxy/ipvs/proxier.go

    func getFirstColumn(r io.Reader) ([]string, error) {
    	b, err := io.ReadAll(r)
    	if err != nil {
    		return nil, err
    	}
    
    	lines := strings.Split(string(b), "\n")
    	words := make([]string, 0, len(lines))
    	for i := range lines {
    		fields := strings.Fields(lines[i])
    		if len(fields) > 0 {
    			words = append(words, fields[0])
    		}
    	}
    	return words, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	)
    
    	// The part of name before the "__" can be up to 205 characters (as with
    	// servicePortChainNameBase above). An IPv6 address can be up to 39 characters, and
    	// a port can be up to 5 digits, plus 3 punctuation characters gives a max total
    	// length of 252, well over chainNameBaseLengthMax (240), so truncation is
    	// theoretically possible (though incredibly unlikely).
    	return hashAndTruncate(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/tokens_controller.go

    	}
    	if sa != nil {
    		// Ensure UID matches if given
    		if len(uid) == 0 || uid == sa.UID {
    			return sa, nil
    		}
    	}
    
    	if !fetchOnCacheMiss {
    		return nil, nil
    	}
    
    	// Live lookup
    	sa, err = e.client.CoreV1().ServiceAccounts(ns).Get(context.TODO(), name, metav1.GetOptions{})
    	if apierrors.IsNotFound(err) {
    		return nil, nil
    	}
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// topologically proximate to the client. The interpretation of "topologically
    	// proximate" may vary across implementations and could encompass endpoints
    	// within the same node, rack, zone, or even region. Setting this value gives
    	// implementations permission to make different tradeoffs, e.g. optimizing for
    	// proximity rather than equal distribution of load. Users should not set this
    	// value if such tradeoffs are not acceptable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

       addockeropt "\"mtu\": 1460,"
       addockeropt "\"storage-driver\": \"overlay2\","
       echo "setting live restore"
       # Disable live-restore if the environment variable is set.
       if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then
          addockeropt "\"live-restore\": false,"
       else
          addockeropt "\"live-restore\": true,"
       fi
    }
    
    function assemble-docker-flags {
      echo "Assemble docker options"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    type validationOptions struct {
    	// allowDefaults permits the validation schema to contain default attributes
    	allowDefaults bool
    	// disallowDefaultsReason gives a reason as to why allowDefaults is false (for better user feedback)
    	disallowDefaultsReason string
    	// requireRecognizedConversionReviewVersion requires accepted webhook conversion versions to contain a recognized version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    }
    
    // WebhookClientConfig contains the information to make a TLS connection with the webhook.
    type WebhookClientConfig struct {
    	// url gives the location of the webhook, in standard URL form
    	// (`scheme://host:port/path`). Exactly one of `url` or `service`
    	// must be specified.
    	//
    	// The `host` should not refer to a service running in the cluster; use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    type UpgradeDiffConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	// +optional
    	KubernetesVersion string `json:"kubernetesVersion,omitempty"`
    
    	// DiffContextLines is the number of lines of context in the diff.
    	// +optional
    	DiffContextLines int `json:"contextLines,omitempty"`
    }
    
    // UpgradeNodeConfiguration contains a list of configurable options which are specific to the "kubeadm upgrade node" command.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Fixes bug where OpenAPIV2 config was used instead of V3, and gives clear error message about OpenAPIV3 requirement ([#120612](https://github.com/kubernetes/kubernetes/pull/120612), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	// GetContainerLogs returns logs of a specific container. By
    	// default, it returns a snapshot of the container log. Set 'follow' to true to
    	// stream the log. Set 'follow' to false and specify the number of lines (e.g.
    	// "100" or "all") to tail the log.
    	GetContainerLogs(ctx context.Context, pod *v1.Pod, containerID ContainerID, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) (err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top