Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for content_es (0.1 sec)

  1. pkg/serviceaccount/legacy.go

    			return nil, errors.New("Token has been invalidated")
    		}
    		if subtle.ConstantTimeCompare(secret.Data[v1.ServiceAccountTokenKey], []byte(tokenData)) == 0 {
    			klog.V(4).Infof("Token contents no longer matches %s/%s for service account %s/%s", namespace, secretName, namespace, serviceAccountName)
    			return nil, errors.New("Token does not match server's copy")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    	if err != nil {
    		return "", fmt.Errorf("failed to list loop devices in sysfs: %s", err)
    	}
    
    	for _, device := range devices {
    		backingFile := fmt.Sprintf("%s/loop/backing_file", device)
    
    		// The contents of this file is the absolute path of "path".
    		data, err := os.ReadFile(backingFile)
    		if err != nil {
    			continue
    		}
    
    		// Return the first match.
    		backingFilePath := cleanBackingFilePath(string(data))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pkg/registry/apps/daemonset/strategy.go

    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the manager has *seen*.
    	//
    	// TODO: Any changes to a part of the object that represents desired state (labels,
    	// annotations etc) should also increment the generation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_Endpoint = map[string]string{
    	"":           "Endpoint represents a single logical \"backend\" implementing a service.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    		return nil
    	}
    	if err := schema.ValidateBytes(data); err != nil {
    		return fmt.Errorf("error validating data: %v; %s", err, stopValidateMessage)
    	}
    	return nil
    }
    
    // URLVisitor downloads the contents of a URL, and if successful, returns
    // an info object representing the downloaded object.
    type URLVisitor struct {
    	URL *url.URL
    	*StreamVisitor
    	HttpAttemptCount int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. pkg/registry/apps/replicaset/strategy.go

    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the ReplicaSet has *seen*.
    	if !apiequality.Semantic.DeepEqual(oldRS.Spec, newRS.Spec) {
    		newRS.Generation = oldRS.Generation + 1
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:43 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"seLinuxMount":         "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // Required.
      optional string name = 1;
    
      // Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
      // CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:
      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/reset.go

    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    		The reset process does not clean your kubeconfig files and you must remove them manually.
    		Please, check the contents of the $HOME/.kube/config file.
    	`)
    
    	cniCleanupInstructions = dedent.Dedent(`
    		The reset process does not clean CNI configuration. To do so, you must remove /etc/cni/net.d
    	`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    type Validation struct {
    	// Expression represents the expression which will be evaluated by CEL.
    	// ref: https://github.com/google/cel-spec
    	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
    	//
    	// - 'object' - The object from the incoming request. The value is null for DELETE requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top