Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,900 for holds (0.06 sec)

  1. src/encoding/json/tables.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package json
    
    import "unicode/utf8"
    
    // safeSet holds the value true if the ASCII character with the given array
    // position can be represented inside a JSON string without any further
    // escaping.
    //
    // All values are true except for the ASCII control characters (0-31), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 18:02:34 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  2. pkg/kubelet/util/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package util holds utility functions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 07:23:07 UTC 2019
    - 672 bytes
    - Viewed (0)
  3. pkg/kubeapiserver/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package kubeapiserver holds code that is common to both the kube-apiserver
    // and the federation-apiserver, but isn't part of a generic API server.
    // For instance, the non-delegated authorization options are used by those two
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 05 19:25:32 UTC 2019
    - 884 bytes
    - Viewed (0)
  4. pkg/routes/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package routes holds a collection of optional master http handlers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 11:22:45 UTC 2016
    - 657 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    // ClusterConfiguration contains cluster-wide configuration for a kubeadm cluster
    type ClusterConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Etcd holds configuration for etcd.
    	// +optional
    	Etcd Etcd `json:"etcd,omitempty"`
    
    	// Networking holds configuration for the networking topology of the cluster.
    	// +optional
    	Networking Networking `json:"networking,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/config/types.go

    type PersistentVolumeBinderControllerConfiguration struct {
    	// pvClaimBinderSyncPeriod is the period for syncing persistent volumes
    	// and persistent volume claims.
    	PVClaimBinderSyncPeriod metav1.Duration
    	// volumeConfiguration holds configuration for volume related features.
    	VolumeConfiguration VolumeConfiguration
    }
    
    // VolumeConfiguration contains *all* enumerated flags meant to configure all volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Spec holds information about the request being evaluated",
    	"status":   "Status is filled in by the server and indicates whether the token can be authenticated.",
    }
    
    func (TokenRequest) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/apidiscovery/v2";
    
    // APIGroupDiscovery holds information about which resources are being served for all version of the API Group.
    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Spec holds information about the request being evaluated.  spec.namespace must be equal to the namespace you made the request against.  If empty, it is defaulted.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/daemonsetcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	daemonconfig "k8s.io/kubernetes/pkg/controller/daemon/config"
    )
    
    // DaemonSetControllerOptions holds the DaemonSetController options.
    type DaemonSetControllerOptions struct {
    	*daemonconfig.DaemonSetControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top