Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 324 for typed (0.41 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    		}
    	}
    
    	return model.BuildSubsetKey(
    		dir,
    		subset,
    		host.Name(destination.Host),
    		port,
    	)
    }
    
    // NB: Un-typed SAN validation is ignored when typed is used, so only typed version must be used with this function.
    func buildCommonConnectTLSContext(proxy *model.Proxy, push *model.PushContext) *tls.CommonTlsContext {
    	ctx := &tls.CommonTlsContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repair.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	eventsv1client "k8s.io/client-go/kubernetes/typed/events/v1"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/client-go/util/retry"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	api "k8s.io/kubernetes/pkg/apis/core"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            e.cause instanceof RuleActionValidationException
            e.cause.message == "First parameter of rule action closure must be of type 'ComponentMetadataDetails'."
        }
    
        def "complains if rule has unsupported parameter type"() {
            when:
            handler.all { ComponentMetadataDetails details, String str -> }
    
            then:
            InvalidUserCodeException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. pkg/registry/flowcontrol/ensurer/strategy.go

    // ObjectOps is the needed operations, both as a receiver from a server and server-independent, on configurationObjects
    type ObjectOps[ObjectType configurationObject] interface {
    	client[ObjectType]
    	cache[ObjectType]
    	objectLocalOps[ObjectType]
    }
    
    // Client is the needed fragment of the typed generated client stubs for the given object type
    type client[ObjectType configurationObject] interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/value.go

    	if it.idx < it.sz {
    		return types.True
    	}
    	return types.False
    }
    
    func (it *baseListIterator) Next() ref.Val {
    	v := it.getter(types.Int(it.idx))
    	it.idx++
    	return v
    }
    
    func (it *baseListIterator) Type() ref.Type {
    	return types.IteratorType
    }
    
    func celBool(pred bool) ref.Val {
    	if pred {
    		return types.True
    	}
    	return types.False
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  6. pkg/registry/core/rest/storage_core.go

    	netutils "k8s.io/utils/net"
    )
    
    // Config provides information needed to build RESTStorage for core.
    type Config struct {
    	GenericConfig
    
    	Proxy    ProxyConfig
    	Services ServicesConfig
    }
    
    type ProxyConfig struct {
    	Transport           http.RoundTripper
    	KubeletClientConfig kubeletclient.KubeletClientConfig
    }
    
    type ServicesConfig struct {
    	// Service IP ranges
    	ClusterIPRange          net.IPNet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. fastapi/encoders.py

    )
    from pathlib import Path, PurePath
    from re import Pattern
    from types import GeneratorType
    from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union
    from uuid import UUID
    
    from fastapi.types import IncEx
    from pydantic import BaseModel
    from pydantic.color import Color
    from pydantic.networks import AnyUrl, NameEmail
    from pydantic.types import SecretBytes, SecretStr
    from typing_extensions import Annotated, Doc
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb.py

    		gdb.Function.__init__(self, "cap")
    
    	def invoke(self, obj):
    		typename = str(obj.type)
    		for klass, fld in self.how:
    			if klass.pattern.match(typename) or paramtypematch(obj.type, klass.pattern):
    				return obj[fld]
    
    
    class DTypeFunc(gdb.Function):
    	"""Cast Interface values to their dynamic type.
    
    	For non-interface types this behaves as the identity operation.
    	"""
    
    	def __init__(self):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    // api conventions).
    func TypeAccessor(obj interface{}) (Type, error) {
    	if typed, ok := obj.(runtime.Object); ok {
    		return objectAccessor{typed}, nil
    	}
    	v, err := conversion.EnforcePtr(obj)
    	if err != nil {
    		return nil, err
    	}
    	t := v.Type()
    	if v.Kind() != reflect.Struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  10. src/reflect/abi_test.go

    type Struct6 struct {
    	Struct1
    }
    
    // Struct7 is a struct with a nested array-typed field
    // that cannot be passed in registers as a result.
    type Struct7 struct {
    	Struct1
    	Struct2
    }
    
    // Struct8 is large aggregate struct type that may be
    // passed in registers.
    type Struct8 struct {
    	Struct5
    	Struct1
    }
    
    // Struct9 is a type that has an array type nested
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 26.4K bytes
    - Viewed (0)
Back to top