Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,212 for casi (0.42 sec)

  1. src/cmd/internal/obj/arm64/list7.go

    }
    
    func arrange(a int) string {
    	switch a {
    	case ARNG_8B:
    		return "B8"
    	case ARNG_16B:
    		return "B16"
    	case ARNG_4H:
    		return "H4"
    	case ARNG_8H:
    		return "H8"
    	case ARNG_2S:
    		return "S2"
    	case ARNG_4S:
    		return "S4"
    	case ARNG_1D:
    		return "D1"
    	case ARNG_2D:
    		return "D2"
    	case ARNG_B:
    		return "B"
    	case ARNG_H:
    		return "H"
    	case ARNG_S:
    		return "S"
    	case ARNG_D:
    		return "D"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

        auto next_op = *transpose_op.getResult().getUsers().begin();
        if (dyn_cast_or_null<quantfork::QuantizeCastOp>(next_op)) return failure();
    
        auto input_type = mlir::cast<ShapedType>(transpose_op.getInput().getType());
        auto perm_type = mlir::cast<ShapedType>(transpose_op.getPerm().getType());
        if (input_type.hasStaticShape() && perm_type.hasStaticShape()) {
          if (perm_type.getNumElements() != input_type.getRank()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		}
    
    	case C_PSAUTO_4:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16, C_PSAUTO_8:
    			return true
    		}
    
    	case C_PSAUTO:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16, C_PSAUTO_8, C_PSAUTO_4:
    			return true
    		}
    
    	case C_PPAUTO_16:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16:
    			return true
    		}
    
    	case C_PPAUTO:
    		switch b {
    		case C_ZAUTO, C_PSAUTO_16, C_PSAUTO_8, C_PPAUTO_16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/test/switch_test.go

    	n := 0
    	rng := newRNG()
    	for i := 0; i < b.N; i++ {
    		rng = rng.next(predictable)
    		switch rng.value() & 7 {
    		case 0:
    			n += 1
    		case 1:
    			n += 2
    		case 2:
    			n += 3
    		case 3:
    			n += 4
    		case 4:
    			n += 5
    		case 5:
    			n += 6
    		case 6:
    			n += 7
    		case 7:
    			n += 8
    		}
    	}
    	sink = n
    }
    
    func BenchmarkSwitch32Predictable(b *testing.B) {
    	benchmarkSwitch32(b, true)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/constant/value.go

    		case int64Val:
    			return i64toi(x1), y
    		}
    	case ratVal:
    		switch x1 := x.(type) {
    		case int64Val:
    			return i64tor(x1), y
    		case intVal:
    			return itor(x1), y
    		}
    	case floatVal:
    		switch x1 := x.(type) {
    		case int64Val:
    			return i64tof(x1), y
    		case intVal:
    			return itof(x1), y
    		case ratVal:
    			return rtof(x1), y
    		}
    	case complexVal:
    		return vtoc(x), y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  10. 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)
Back to top