Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for content_es (0.11 sec)

  1. pkg/kubelet/volumemanager/volume_manager.go

    	// Some pods expect to have Setup called over and over again to update.
    	// Remount plugins for which this is true. (Atomically updating volumes,
    	// like Downward API, depend on this to update the contents of the volume).
    	vm.desiredStateOfWorldPopulator.ReprocessPod(uniquePodName)
    
    	err := wait.PollUntilContextTimeout(
    		ctx,
    		podAttachAndMountRetryInterval,
    		podAttachAndMountTimeout,
    		true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. LICENSES/vendor/k8s.io/gengo/v2/LICENSE

              documentation, if 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:39 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    )
    
    func init() {
    	install.Install(cfgScheme)
    }
    
    // loadAuthenticationConfig parses the authentication configuration from the given file and returns it and the file's contents.
    func loadAuthenticationConfig(configFilePath string) (*apiserver.AuthenticationConfiguration, string, error) {
    	data, err := os.ReadFile(configFilePath)
    	if err != nil {
    		return nil, "", err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  8. LICENSES/vendor/sigs.k8s.io/knftables/LICENSE

              documentation, if 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 23 13:09:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. pkg/api/testing/unstructured_test.go

    	knownFailureReasons := map[string][]schema.GroupVersionKind{
    		// Since JSON cannot directly represent arbitrary byte sequences, a byte slice
    		// encodes to a JSON string containing the base64 encoding of the slice
    		// contents. Decoding a JSON string into a byte slice assumes (and requires) that
    		// the JSON string contain base64-encoded data. The CBOR serializer must be
    		// compatible with this behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    		// when i != 0, we have transformed the data from storage using the new transformer,
    		// we want to issue a write to etcd even if the contents of the data haven't changed
    		return result, stale || i != 0, nil
    	}
    	if err := utilerrors.Reduce(utilerrors.NewAggregate(errs)); err != nil {
    		return nil, false, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top