Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 322 for extr6 (0.52 sec)

  1. pkg/controlplane/instance_test.go

    	config := &Config{
    		ControlPlane: controlplaneapiserver.Config{
    			Generic: genericapiserver.NewConfig(legacyscheme.Codecs),
    			Extra: controlplaneapiserver.Extra{
    				APIResourceConfigSource: DefaultAPIResourceConfigSource(),
    			},
    		},
    		Extra: Extra{
    			APIServerServicePort:   443,
    			MasterCount:            1,
    			EndpointReconcilerType: reconcilers.MasterCountReconcilerType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/cmd/distpack/pack.go

    	out, err := os.Create(name)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	var f File
    	defer func() {
    		if err := recover(); err != nil {
    			extra := ""
    			if f.Name != "" {
    				extra = " " + f.Name
    			}
    			log.Fatalf("writing %s%s: %v", name, extra, err)
    		}
    	}()
    
    	zw := check(gzip.NewWriterLevel(out, gzip.BestCompression))
    	tw := tar.NewWriter(zw)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-server-deployment.yaml

              mountPath: /etc/config
            command:
              - /pod_nanny
              - --config-dir=/etc/config
              - --cpu={{ base_metrics_server_cpu }}
              - --extra-cpu=0.5m
              - --memory={{ base_metrics_server_memory }}
              - --extra-memory={{ metrics_server_memory_per_node }}Mi
              - --threshold=5
              - --deployment=metrics-server-v0.7.1
              - --container=metrics-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/runtime/cgo.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname set_crosscall2
    var set_crosscall2 func()
    
    // cgoHasExtraM is set on startup when an extra M is created for cgo.
    // The extra M must be created before any C/C++ code calls cgocallback.
    var cgoHasExtraM bool
    
    // cgoUse is called by cgo-generated code (using go:linkname to get at
    // an unexported name). The calls serve two purposes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/config.go

    	rbacrest "k8s.io/kubernetes/pkg/registry/rbac/rest"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Config defines configuration for the master
    type Config struct {
    	Generic *genericapiserver.Config
    	Extra
    }
    
    type Extra struct {
    	ClusterAuthenticationInfo clusterauthenticationtrust.ClusterAuthenticationInfo
    
    	APIResourceConfigSource serverstorage.APIResourceConfigSource
    	StorageFactory          serverstorage.StorageFactory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/internal/trace/event_test.go

    // license that can be found in the LICENSE file.
    
    package trace
    
    import "testing"
    
    func TestPanicEvent(t *testing.T) {
    	// Use a sync event for this because it doesn't have any extra metadata.
    	ev := syncEvent(nil, 0)
    
    	mustPanic(t, func() {
    		_ = ev.Range()
    	})
    	mustPanic(t, func() {
    		_ = ev.Metric()
    	})
    	mustPanic(t, func() {
    		_ = ev.Log()
    	})
    	mustPanic(t, func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 784 bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-multiple-params.md

    It will perform the validation of the compound data, and will document it like that for the OpenAPI schema and automatic docs.
    
    ## Singular values in body
    
    The same way there is a `Query` and `Path` to define extra data for query and path parameters, **FastAPI** provides an equivalent `Body`.
    
    For example, extending the previous model, you could decide that you want to have another key `importance` in the same body, besides the `item` and `user`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client.go

    	if f.filter != nil {
    		f.filter.AddHandler(fn)
    	}
    }
    
    func composeFilters(filter kubetypes.DynamicObjectFilter, extra ...func(obj any) bool) kubetypes.DynamicObjectFilter {
    	return composedFilter{
    		filter: filter,
    		extra: slices.FilterInPlace(extra, func(f func(obj any) bool) bool {
    			return f != nil
    		}),
    	}
    }
    
    func (cl *Client) inRevision(obj any) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-syscall-steal-proc-self.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing.
    //
    // Specifically, it tests a scenario where a thread 'steals'
    // a P from itself. It's just a ProcStop with extra steps when
    // it happens on the same P.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/types.go

    	// +optional
    	Groups []string `json:"groups,omitempty" protobuf:"bytes,4,rep,name=groups"`
    	// extra contains extra attributes of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +optional
    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,6,rep,name=extra"`
    }
    
    // Built in signerName values that are honored by kube-controller-manager.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top