Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 184 for ktypes (0.12 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/watch"
    	clientset "k8s.io/client-go/kubernetes"
    	fakeclient "k8s.io/client-go/kubernetes/fake"
    	core "k8s.io/client-go/testing"
    	"k8s.io/kubernetes/pkg/volume"
    	fakecsi "k8s.io/kubernetes/pkg/volume/csi/fake"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    const (
    	testWatchTimeout     = 10 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

            Doc(
                """
                Priority of the alias. This affects whether an alias generator is used.
                """
            ),
        ] = _Unset,
        # TODO: update when deprecating Pydantic v1, import these types
        # validation_alias: str | AliasPath | AliasChoices | None
        validation_alias: Annotated[
            Union[str, None],
            Doc(
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	fullOpts := &v1.SELinuxOptions{
    		User:  "system_u",
    		Role:  "object_r",
    		Type:  "container_t",
    		Level: "s0:c1,c2",
    	}
    	differentFullOpts := &v1.SELinuxOptions{
    		User:  "system_u",
    		Role:  "object_r",
    		Type:  "container_t",
    		Level: "s0:c9998,c9999",
    	}
    	partialOpts := &v1.SELinuxOptions{
    		Level: "s0:c3,c4",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    	"k8s.io/apimachinery/pkg/types"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    			if pname, ptype := extractName(x, p.tok == token.COMMA); pname != nil && (ptype != nil || p.tok != token.RBRACK) {
    				// spec.Name "[" pname ...
    				// spec.Name "[" pname ptype ...
    				// spec.Name "[" pname ptype "," ...
    				p.parseGenericType(spec, lbrack, pname, ptype) // ptype may be nil
    			} else {
    				// spec.Name "[" pname "]" ...
    				// spec.Name "[" x ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "resource": {
                "description": "Resource is one of the existing resource types.  \"*\" means all.",
                "type": "string"
              },
              "subresource": {
                "description": "Subresource is one of the existing resource types.  \"\" means none.",
                "type": "string"
              },
              "verb": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    	testCases := []struct {
    		name string
    		refs []metav1.OwnerReference
    		// The set and pod objets will be created with names "set" and "pod", respectively.
    		setUID        types.UID
    		podUID        types.UID
    		nonController bool
    	}{
    		{
    			// API validation should prevent two controllers from being set,
    			// but for completeness the semantics here are tested.
    			name: "set and pod controller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      return absl::OkStatus();
    }
    
    // Finds the types of the _Arg nodes, indexed by position.
    static Status GetArgTypes(const Graph& graph, DataTypeVector* types) {
      for (Node* n : graph.op_nodes()) {
        if (n->type_string() == kArgOp) {
          int index;
          TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
          const int num_types = types->size();
          if (index < 0 || index >= num_types) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        Value value = cst.getResult();
        Value full_range_const = value;
        auto qtype = mlir::quant::UniformQuantizedType::getQuantizedElementType(
            value.getType());
        // Only the 8-bit constants are imported with narrow range.
        if (!qtype || qtype.getStorageTypeIntegralWidth() != 8 ||
            !(qtype.isa<mlir::quant::UniformQuantizedType>() ||
              qtype.isa<mlir::quant::UniformQuantizedPerAxisType>())) {
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

                          type: object
                          x-kubernetes-map-type: atomic
                        type: array
                    type: object
                required:
                - addresses
                type: object
              status:
                description: IPAddressPoolStatus defines the observed state of IPAddressPool.
                type: object
            required:
            - spec
            type: object
        served: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top