Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,900 for holds (0.08 sec)

  1. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated
      optional TokenReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    }
    
    type quotaAccessor struct {
    	client kubernetes.Interface
    
    	// lister can list/get quota objects from a shared informer's cache
    	lister corev1listers.ResourceQuotaLister
    
    	// liveLookups holds the last few live lookups we've done to help ammortize cost on repeated lookup failures.
    	// This lets us handle the case of latent caches, by looking up actual results for a namespace on cache miss/no results.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PluginManagementInjector.java

         *
         * @param model The model into which to merge the values specified by its plugin management section, must not be
         *            <code>null</code>.
         * @param request The model building request that holds further settings, must not be {@code null}.
         * @param problems The container used to collect problems that were encountered, must not be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/statefulsetcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    
    	statefulsetconfig "k8s.io/kubernetes/pkg/controller/statefulset/config"
    )
    
    // StatefulSetControllerOptions holds the StatefulSetController options.
    type StatefulSetControllerOptions struct {
    	*statefulsetconfig.StatefulSetControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    }
    
    // WebListData holds the data needed to generate HTML source code listing.
    type WebListData struct {
    	Total string
    	Files []WebListFile
    }
    
    // WebListFile holds the per-file information for HTML source code listing.
    type WebListFile struct {
    	Funcs []WebListFunc
    }
    
    // WebListFunc holds the per-function information for HTML source code listing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuildingEvent.java

    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.ModelBuildingEvent;
    
    /**
     * Holds data relevant for a model building event.
     */
    record DefaultModelBuildingEvent(
            Model model, Consumer<Model> update, ModelBuilderRequest request, ModelProblemCollector problems)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/issues_test.go

    // Copyright 2024 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.
    
    // This file holds test cases for individual issues
    // for which there is (currently) no better location.
    
    package syntax
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestIssue67866(t *testing.T) {
    	var tests = []string{
    		"package p; var _ = T{@0: 0}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/admission/config.go

    limitations under the License.
    */
    
    package admission
    
    import (
    	"os"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apiserver/pkg/admission"
    )
    
    // Config holds the configuration needed to for initialize the admission plugins
    type Config struct {
    	CloudConfigFile string
    }
    
    // New sets up the plugins and admission start hooks needed for admission
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/os/exec.go

    	//
    	// In modeHandle, the lower bits also contain a reference count for the
    	// handle field.
    	//
    	// The Process itself initially holds 1 persistent reference. Any
    	// operation that uses the handle with a system call temporarily holds
    	// an additional transient reference. This prevents the handle from
    	// being closed prematurely, which could result in the OS allocating a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. pkg/kube/apimirror/probe.go

    	Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
    }
    
    // Type represents the stored type of IntOrString.
    type Type int64
    
    const (
    	Int    Type = iota // The IntOrString holds an int.
    	String             // The IntOrString holds a string.
    )
    
    type IntOrString struct {
    	Type   Type
    	IntVal int32
    	StrVal string
    }
    
    // UnmarshalJSON implements the json.Unmarshaller interface.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top