Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,184 for casi (0.06 sec)

  1. pkg/config/schema/kubetypes/resources.gen.go

    	case *k8sioapiappsv1.DaemonSet:
    		return gvk.DaemonSet, true
    	case *k8sioapiappsv1.Deployment:
    		return gvk.Deployment, true
    	case *istioioapinetworkingv1alpha3.DestinationRule:
    		return gvk.DestinationRule, true
    	case *apiistioioapinetworkingv1alpha3.DestinationRule:
    		return gvk.DestinationRule, true
    	case *k8sioapidiscoveryv1.EndpointSlice:
    		return gvk.EndpointSlice, true
    	case *k8sioapicorev1.Endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/config/schema/gvk/resources.gen.go

    	case gvr.PeerAuthentication:
    		return PeerAuthentication, true
    	case gvr.Pod:
    		return Pod, true
    	case gvr.ProxyConfig:
    		return ProxyConfig, true
    	case gvr.ReferenceGrant:
    		return ReferenceGrant, true
    	case gvr.RequestAuthentication:
    		return RequestAuthentication, true
    	case gvr.Secret:
    		return Secret, true
    	case gvr.Service:
    		return Service, true
    	case gvr.ServiceAccount:
    		return ServiceAccount, true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/convert_type.cc

          return tflite::TensorType_FLOAT32;
        case tensorflow::DT_DOUBLE:
          return tflite::TensorType_FLOAT64;
        case tensorflow::DT_INT8:
          return tflite::TensorType_INT8;
        case tensorflow::DT_INT16:
          return tflite::TensorType_INT16;
        case tensorflow::DT_INT32:
          return tflite::TensorType_INT32;
        case tensorflow::DT_UINT32:
          return tflite::TensorType_UINT32;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			switch inst.Op {
    			case FDIV:
    				inst.Op = FDIVR
    			case FDIVR:
    				inst.Op = FDIV
    			case FSUB:
    				inst.Op = FSUBR
    			case FSUBR:
    				inst.Op = FSUB
    			case FDIVP:
    				inst.Op = FDIVRP
    			case FDIVRP:
    				inst.Op = FDIVP
    			case FSUBP:
    				inst.Op = FSUBRP
    			case FSUBRP:
    				inst.Op = FSUBP
    			}
    		}
    
    	case MOVNTSD:
    		// MOVNTSD is F2 0F 2B /r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	case *ast.CaseClause:
    		return "case clause"
    	case *ast.ChanType:
    		return "channel type"
    	case *ast.CommClause:
    		return "communication clause"
    	case *ast.Comment:
    		return "comment"
    	case *ast.CommentGroup:
    		return "comment group"
    	case *ast.CompositeLit:
    		return "composite literal"
    	case *ast.DeclStmt:
    		return NodeDescription(n.Decl) + " statement"
    	case *ast.DeferStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/stmt0.go

    	switch x {
    	case 1 /* ERROR "overflows" */ << 100:
    	}
    
    	switch x {
    	case 1:
    	case 1 /* ERROR "duplicate case" */ :
    	case ( /* ERROR "duplicate case" */ 1):
    	case 2, 3, 4:
    	case 5, 1 /* ERROR "duplicate case" */ :
    	}
    
    	switch uint64(x) {
    	case 1<<64 - 1:
    	case 1 /* ERROR "duplicate case" */ <<64 - 1:
    	case 2, 3, 4:
    	case 5, 1 /* ERROR "duplicate case" */ <<64 - 1:
    	}
    
    	var y32 float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. schema/field.go

    				}
    			case int64:
    				field.ReflectValueOf(ctx, value).SetInt(data)
    			case int:
    				field.ReflectValueOf(ctx, value).SetInt(int64(data))
    			case int8:
    				field.ReflectValueOf(ctx, value).SetInt(int64(data))
    			case int16:
    				field.ReflectValueOf(ctx, value).SetInt(int64(data))
    			case int32:
    				field.ReflectValueOf(ctx, value).SetInt(int64(data))
    			case uint:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/utils.go

    	case v1.SchemeGroupVersion.WithKind("CustomResourceDefinitionStatus"):
    		return &apiextensionsv1.CustomResourceDefinitionStatusApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("CustomResourceDefinitionVersion"):
    		return &apiextensionsv1.CustomResourceDefinitionVersionApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("CustomResourceSubresources"):
    		return &apiextensionsv1.CustomResourceSubresourcesApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. test/codegen/retpoline.go

    // when retpoline is on. See issue 57097.
    func noJumpTables(x int) int {
    	switch x {
    	case 0:
    		return 0
    	case 1:
    		return 1
    	case 2:
    		return 2
    	case 3:
    		return 3
    	case 4:
    		return 4
    	case 5:
    		return 5
    	case 6:
    		return 6
    	case 7:
    		return 7
    	case 8:
    		return 8
    	case 9:
    		return 9
    	}
    	return 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 580 bytes
    - Viewed (0)
  10. pkg/config/protocol/instance.go

    )
    
    // Parse from string ignoring case
    func Parse(s string) Instance {
    	switch strings.ToLower(s) {
    	case "tcp":
    		return TCP
    	case "udp":
    		return UDP
    	case "grpc":
    		return GRPC
    	case "grpc-web":
    		return GRPCWeb
    	case "http":
    		return HTTP
    	case "http_proxy":
    		return HTTP_PROXY
    	case "http2":
    		return HTTP2
    	case "https":
    		return HTTPS
    	case "tls":
    		return TLS
    	case "mongo":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top