Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 347 for typeA (0.06 sec)

  1. pkg/controlplane/controller/legacytokentracking/controller.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	corev1informers "k8s.io/client-go/informers/core/v1"
    	"k8s.io/client-go/kubernetes"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    )
    
    const (
    	ConfigMapName    = "kube-apiserver-legacy-service-account-token-tracking"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// Serializer is used to determine how to convert responses from API methods into bytes to send over
    	// the wire.
    	Serializer     runtime.NegotiatedSerializer
    	ParameterCodec runtime.ParameterCodec
    
    	Typer                 runtime.ObjectTyper
    	Creater               runtime.ObjectCreater
    	Convertor             runtime.ObjectConvertor
    	ConvertabilityChecker ConvertabilityChecker
    	Defaulter             runtime.ObjectDefaulter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	kubeletConfigTyped, ok := kubeletConfig.(*kubeletconfig.KubeletConfiguration)
    	if !ok {
    		return errors.New("could not convert the KubeletConfiguration to a typed object")
    	}
    	if err := waiter.WaitForKubelet(kubeletConfigTyped.HealthzBindAddress, *kubeletConfigTyped.HealthzPort); err != nil {
    		return handleError(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.h

    #ifndef TENSORFLOW_COMPILER_JIT_XLA_CLUSTER_UTIL_H_
    #define TENSORFLOW_COMPILER_JIT_XLA_CLUSTER_UTIL_H_
    
    #include <string>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/xla_activity.pb.h"
    #include "xla/service/graphcycles/graphcycles.h"
    #include "xla/statusor.h"
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    			expectValue: types.OptionalNone,
    		},
    		{
    			name:        "datetime_failure",
    			expr:        `format.datetime().validate("2020-01-32T00:00:00Z")`,
    			expectValue: types.OptionalOf(types.NewStringList(types.DefaultTypeAdapter, []string{"invalid datetime"})),
    		},
    		{
    			name:        "unknown_format",
    			expr:        `format.named("unknown").hasValue()`,
    			expectValue: types.False,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/methodsetcache.go

    }
    
    // MethodSet returns the method set of type T.  It is thread-safe.
    //
    // If cache is nil, this function is equivalent to types.NewMethodSet(T).
    // Utility functions can thus expose an optional *MethodSetCache
    // parameter to clients that care about performance.
    func (cache *MethodSetCache) MethodSet(T types.Type) *types.MethodSet {
    	if cache == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 18:08:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	return Unalias(alias)
    }
    
    // Unalias is a wrapper of types.Unalias.
    func Unalias(t types.Type) types.Type { return types.Unalias(t) }
    
    // newAlias is an internal alias around types.NewAlias.
    // Direct usage is discouraged as the moment.
    // Try to use NewAlias instead.
    func newAlias(tname *types.TypeName, rhs types.Type) *Alias {
    	a := types.NewAlias(tname, rhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    			return // invalid type
    		}
    
    		var V0 types.Type // integral type in the type set of V
    
    		for _, vt := range vtypes {
    			u, _ := vt.Underlying().(*types.Basic)
    			if u != nil && u.Info()&types.IsInteger != 0 {
    				switch u.Kind() {
    				case types.Byte, types.Rune, types.UntypedRune:
    					continue
    				}
    				V0 = vt
    				break
    			}
    		}
    
    		if V0 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/kubelet/util/queue/work_queue_test.go

    	q.Enqueue(types.UID("foo1"), -1*time.Minute)
    	q.Enqueue(types.UID("foo2"), -1*time.Minute)
    	q.Enqueue(types.UID("foo3"), 1*time.Minute)
    	q.Enqueue(types.UID("foo4"), 1*time.Minute)
    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    	// Dial the time to 1 hour ahead.
    	clock.Step(time.Hour)
    	expected = []types.UID{types.UID("foo3"), types.UID("foo4")}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/passbm_test.go

    }
    
    func genFunction(size int) []bloc {
    	var blocs []bloc
    	elemType := types.Types[types.TINT64]
    	ptrType := elemType.PtrTo()
    
    	valn := func(s string, m, n int) string { return fmt.Sprintf("%s%d-%d", s, m, n) }
    	blocs = append(blocs,
    		Bloc("entry",
    			Valu(valn("store", 0, 4), OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, types.Types[types.TUINTPTR], 0, nil),
    			Goto(blockn(1)),
    		),
    	)
    	for i := 1; i < size+1; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top