Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 248 for it (0.18 sec)

  1. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal
    // places. Numbers larger or more precise will be capped or rounded up.
    // (E.g.: 0.1m will rounded up to 1m.)
    // This may be extended in the future if we require larger or smaller quantities.
    //
    // When a Quantity is parsed from a string, it will remember the type of suffix
    // it had, and will use the same type again when it is serialized.
    //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      // When a driver is initialized on a node, it provides the same topology keys
      // along with values. Kubelet will expose these topology keys as labels
      // on its own node object.
      // When Kubernetes does topology aware provisioning, it can use this list to
      // determine which labels it should retrieve from the node object and pass
      // back to the driver.
      // It is possible for different nodes to use different topology keys.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.autoscaling.v2beta1;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // +optional
      repeated PolicyRule rules = 2;
    }
    
    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    // It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
    // namespace only have effect in that namespace.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // +optional
      repeated PolicyRule rules = 2;
    }
    
    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    // It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
    // namespace only have effect in that namespace.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  6. cni/pkg/pluginlistener/listener.go

    		// Anything other than "file not found" is an error.
    		return nil, fmt.Errorf("failed to remove unix://%s: %v", path, err)
    	}
    
    	// Attempt to create the folder in case it doesn't exist
    	if err := os.MkdirAll(filepath.Dir(path), 0o750); err != nil {
    		// If we cannot create it, just warn here - we will fail later if there is a real error
    		log.Warnf("Failed to create directory for %v: %v", path, err)
    	}
    
    	var err error
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/discovery/v1/generated.proto

      // API. This field is deprecated, and will be removed when the v1beta1
      // API is removed (no sooner than kubernetes v1.24).  While this field can
      // hold values, it is not writable through the v1 API, and any attempts to
      // write to it will be silently ignored. Topology information can be found
      // in the zone and nodeName fields instead.
      // +optional
      map<string, string> deprecatedTopology = 5;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // manually, the requested family is available in the cluster,
      // and ipFamilyPolicy allows it, it will be used; otherwise creation of
      // the service will fail. This field is conditionally mutable: it allows
      // for adding or removing a secondary IP family, but it does not allow
      // changing the primary IP family of the Service. Valid values are "IPv4"
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig.go

    		return cniConfigFilepath, err
    	}
    
    	if cfg.chainedCNIPlugin && strings.HasSuffix(cniConfigFilepath, ".conf") {
    		// If the old CNI config filename ends with .conf, rename it to .conflist, because it has to be changed to a list
    		installLog.Infof("Renaming %s extension to .conflist", cniConfigFilepath)
    		err = os.Rename(cniConfigFilepath, cniConfigFilepath+"list")
    		if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/go-multierror/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
Back to top