Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 286 for typed (0.57 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    // each BranchStmt we scan for the innermost target of the right type.
    type targets struct {
    	tail         *targets // rest of stack
    	_break       *Block
    	_continue    *Block
    	_fallthrough *Block
    }
    
    // Destinations associated with a labeled block.
    // We populate these as labels are encountered in forward gotos or
    // labeled statements.
    type lblock struct {
    	_goto     *Block
    	_break    *Block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            !dispatch.empty
            dispatch.size() == 1
            dispatch.dispatch(invocation)
    
            then:
            1 * listener.dispatch(invocation)
            0 * _
        }
    
        def "can add a typed listener"() {
            def listener = Mock(TestListener)
            def invocation = new MethodInvocation(method, ["param"] as Object[])
    
            when:
            def dispatch = BroadcastDispatch.empty(TestListener).add(listener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. pkg/registry/core/service/portallocator/controller/repair.go

    	"k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"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
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

    #include <cstdint>
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/types/optional.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/protobuf/config.pb.h"
    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    
    struct XlaAutoJitFlag {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top