Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for content_es (0.96 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    	// volume. This field defaults to false.
    	//
    	// Note: After a successful initial NodePublishVolume call, subsequent calls
    	// to NodePublishVolume should only update the contents of the volume. New
    	// mount points will not be seen by a running container.
    	//
    	// +optional
    	RequiresRepublish *bool `json:"requiresRepublish,omitempty" protobuf:"varint,7,opt,name=requiresRepublish"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	// const.
    	CanSupport(spec *Spec) bool
    
    	// RequiresRemount returns true if this plugin requires mount calls to be
    	// reexecuted. Atomically updating volumes, like Downward API, depend on
    	// this to update the contents of the volume.
    	RequiresRemount(spec *Spec) bool
    
    	// NewMounter creates a new volume.Mounter from an API specification.
    	// Ownership of the spec pointer in *not* transferred.
    	// - spec: The v1.Volume spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. pkg/generated/openapi/zz_generated.openapi.go

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

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

    * Adds --append-hash flag to kubectl create configmap/secret, which will append a short hash of the configmap/secret contents to the name during creation. ([#49961](https://github.com/kubernetes/kubernetes/pull/49961), [@mtaufen](https://github.com/mtaufen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux_test.go

    	for key, val := range podDirCountMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map quotaSizeMap contents:\n")
    	for key, val := range quotaSizeMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map supportsQuotasMap contents:\n")
    	for key, val := range supportsQuotasMap {
    		fmt.Printf("        %v -> %v\n", key, val)
    	}
    	fmt.Printf("    Map backingDevMap contents:\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. build/README.md

    * [`build/copy-output.sh`](copy-output.sh): This will copy the contents of `_output/dockerized/bin` from the Docker container to the local `_output/dockerized/bin`. It will also copy out specific file patterns that are generated as part of the build process. This is run automatically as part of `build/run.sh`.
    * [`build/make-clean.sh`](make-clean.sh): Clean out the contents of `_output`, remove any locally built container images and remove the data container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. hack/lib/protoc.sh

      # Run gofmt to clean up the generated code.
      kube::golang::setup_env
      gofmt -s -w "${package}/api.pb.go"
    }
    
    # Compares the contents of $1 and $2
    # Echo's $3 in case of error and exits 1
    function kube::protoc::diff() {
      local ret=0
      diff -I "gzipped FileDescriptorProto" -I "0x" -Naupr "${1}" "${2}" || ret=$?
      if [[ ${ret} -ne 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/discovery/file/file.go

    	}
    	if err := clientcmd.Validate(*config); err != nil {
    		return nil, err
    	}
    
    	// If the kubeconfig points to a file for the CA, make sure the CA file contents are embedded
    	if err := kubeconfigutil.EnsureCertificateAuthorityIsEmbedded(currentCluster); err != nil {
    		return nil, err
    	}
    
    	// If the discovery file config contains authentication credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/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 controller has *seen*.
    	if !apiequality.Semantic.DeepEqual(oldCRD.Spec, newCRD.Spec) {
    		newCRD.Generation = oldCRD.Generation + 1
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top