Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,788 for casi (0.23 sec)

  1. src/reflect/value.go

    	v.mustBeAssignable()
    	switch v.kind() {
    	case Bool:
    		*(*bool)(v.ptr) = false
    	case Int:
    		*(*int)(v.ptr) = 0
    	case Int8:
    		*(*int8)(v.ptr) = 0
    	case Int16:
    		*(*int16)(v.ptr) = 0
    	case Int32:
    		*(*int32)(v.ptr) = 0
    	case Int64:
    		*(*int64)(v.ptr) = 0
    	case Uint:
    		*(*uint)(v.ptr) = 0
    	case Uint8:
    		*(*uint8)(v.ptr) = 0
    	case Uint16:
    		*(*uint16)(v.ptr) = 0
    	case Uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

            }
        }
    
        private void beginStopping() {
            switch (state) {
                case Idle:
                case Busy:
                case Canceled:
                case Broken:
                    setState(State.StopRequested);
                    break;
                case StopRequested:
                case Stopped:
                case ForceStopped:
                    break;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.DaemonSet:
    		return &k8sioapiappsv1.DaemonSet{}
    	case gvr.Deployment:
    		return &k8sioapiappsv1.Deployment{}
    	case gvr.DestinationRule:
    		return &apiistioioapinetworkingv1alpha3.DestinationRule{}
    	case gvr.EndpointSlice:
    		return &k8sioapidiscoveryv1.EndpointSlice{}
    	case gvr.Endpoints:
    		return &k8sioapicorev1.Endpoints{}
    	case gvr.EnvoyFilter:
    		return &apiistioioapinetworkingv1alpha3.EnvoyFilter{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/positions.go

    		// case *BlockStmt:
    		// case *ExprStmt:
    		case *SendStmt:
    			m = n.Chan
    		// case *DeclStmt:
    		case *AssignStmt:
    			m = n.Lhs
    		// case *BranchStmt:
    		// case *CallStmt:
    		// case *ReturnStmt:
    		// case *IfStmt:
    		// case *ForStmt:
    		// case *SwitchStmt:
    		// case *SelectStmt:
    
    		// helper nodes
    		case *RangeClause:
    			if n.Lhs != nil {
    				m = n.Lhs
    				continue
    			}
    			m = n.X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/internal/obj/mips/asm0.go

    	case AMOVVD:
    		return FPV(4, 1)
    	case AMOVFW:
    		return FPF(4, 4)
    	case AMOVDW:
    		return FPD(4, 4)
    	case AMOVWF:
    		return FPW(4, 0)
    	case AMOVDF:
    		return FPD(4, 0)
    	case AMOVWD:
    		return FPW(4, 1)
    	case AMOVFD:
    		return FPF(4, 1)
    	case AABSF:
    		return FPF(0, 5)
    	case AABSD:
    		return FPD(0, 5)
    	case AMOVF:
    		return FPF(0, 6)
    	case AMOVD:
    		return FPD(0, 6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top