Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 117 for content_es (0.22 sec)

  1. staging/src/k8s.io/api/discovery/v1/generated.proto

    option go_package = "k8s.io/api/discovery/v1";
    
    // Endpoint represents a single logical "backend" implementing a service.
    message Endpoint {
      // addresses of this endpoint. The contents of this field are interpreted
      // according to the corresponding EndpointSlice addressType field. Consumers
      // must handle different types of addresses in the context of their own
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/users/users_linux.go

    		total, min, max)
    }
    
    // addEntries takes /etc/passwd or /etc/group file content and appends entries to it based
    // on a createEntry function. Returns the updated contents of the file.
    func addEntries(file string, entries []*entry, createEntry func(*entry) string) string {
    	out := file
    	newLines := make([]string, 0, len(entries))
    	for _, e := range entries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1/types.go

    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// addresses of this endpoint. The contents of this field are interpreted
    	// according to the corresponding EndpointSlice addressType field. Consumers
    	// must handle different types of addresses in the context of their own
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    	case "list":
    		return e.listWorkEstimator.EstimateWork(r, flowSchemaName, priorityLevelName)
    	case "watch":
    		// WATCH supports `SendInitialEvents` option, which effectively means
    		// that is starts with sending of the contents of a corresponding LIST call.
    		// From that perspective, given that the watch only consumes APF seats
    		// during its initialization (sending init events), its cost should then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. LICENSES/third_party/forked/shell2junit/LICENSE

    provided along with the Derivative Works; or, within a display generated by 
    the Derivative Works, if and wherever such third-party notices normally 
    appear. The contents of the NOTICE file are for informational purposes only 
    and do not modify the License. You may add Your own attribution notices 
    within Derivative Works that You distribute, alongside or as an addendum to 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error writing kubelet configuration to file"))
    	}
    
    	if dryRun { // Print what contents would be written
    		err := dryrunutil.PrintDryRunFile(kubeadmconstants.KubeletConfigurationFileName, kubeletDir, kubeadmconstants.KubeletRunDirectory, os.Stdout)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags_test.go

    			outputFormat:   "go-template-file",
    			templateArg:    templateFile.Name(),
    			expectedOutput: "foo",
    		},
    		{
    			name:           "valid output format and invalid template argument results in the templateArg contents as the output",
    			outputFormat:   "go-template",
    			templateArg:    "invalid",
    			expectedOutput: "invalid",
    		},
    		{
    			name:          "no printer is matched on an invalid outputFormat",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. pkg/kubelet/preemption/preemption_test.go

    		reqs = append(reqs, &admissionRequirement{
    			resourceName: v1.ResourcePods,
    			quantity:     int64(pods),
    		})
    	}
    	return admissionRequirementList(reqs)
    }
    
    // this checks if the lists contents contain all of the same elements.
    // this is not correct if there are duplicate pods in the list.
    // for example: podListEqual([a, a, b], [a, b, b]) will return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
    	// CEL expressions have access to the contents of the SubjectAccessReview in v1 version.
    	// If version specified by subjectAccessReviewVersion in the request variable is v1beta1,
    	// the contents would be converted to the v1 version before evaluating the CEL expression.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// remounted to reflect changes in the referencing pod. Atomically updating
    	// volumes, depend on this to update the contents of the volume.
    	// All volume mounting calls should be idempotent so a second mount call for
    	// volumes that do not need to update contents should not fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top