Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 324 for typed (1.68 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter_test.go

    										Fields: map[string]*structpb.Value{
    											"@type": {
    												Kind: &structpb.Value_StringValue{
    													StringValue: "type.googleapis.com/envoy.config.filter.network.ext_authz.v2.ExtAuthz",
    												},
    											},
    										},
    									}},
    								},
    							},
    						},
    					},
    				},
    			},
    		}, error: "referenced type unknown (hint: try using the v3 XDS API)"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass.cc

      bool print_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool check_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool check_output_numerics;
    };
    
    void MoveOutgoingEdges(Graph* g, Node* old_node, Node* new_node) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    // and map[string]interface representation.
    type UnstructuredConverter interface {
    	ToUnstructured(obj interface{}) (map[string]interface{}, error)
    	FromUnstructured(u map[string]interface{}, obj interface{}) error
    }
    
    type structField struct {
    	structType reflect.Type
    	field      int
    }
    
    type fieldInfo struct {
    	name      string
    	nameValue reflect.Value
    	omitempty bool
    }
    
    type fieldsCacheMap map[structField]*fieldInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. src/internal/abi/type.go

    }
    
    // Imethod represents a method on an interface type
    type Imethod struct {
    	Name NameOff // name of method
    	Typ  TypeOff // .(*FuncType) underneath
    }
    
    // ArrayType represents a fixed array type.
    type ArrayType struct {
    	Type
    	Elem  *Type // array element type
    	Slice *Type // slice type
    	Len   uintptr
    }
    
    // Len returns the length of t if t is an array type, otherwise 0
    func (t *Type) Len() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    				),
    				// new name gets preserved from versioned object, type gets set explicitly
    				VersionedObject: &examplev1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "example.apiserver.k8s.io/v1", Kind: "Pod"}, ObjectMeta: metav1.ObjectMeta{Name: "newpodversioned"}},
    				// old name gets overwritten from converted attributes, type gets set explicitly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/controller/replication/conversion.go

    	"k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/watch"
    	appsv1apply "k8s.io/client-go/applyconfigurations/apps/v1"
    	appsv1autoscaling "k8s.io/client-go/applyconfigurations/autoscaling/v1"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	appsv1client "k8s.io/client-go/kubernetes/typed/apps/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top