Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,571 for casi (0.1 sec)

  1. pkg/volume/csimigration/plugin_manager.go

    	case csilibplugins.AzureFileInTreePluginName:
    		return true
    	case csilibplugins.AzureDiskInTreePluginName:
    		return true
    	case csilibplugins.CinderInTreePluginName:
    		return true
    	case csilibplugins.VSphereInTreePluginName:
    		return true
    	case csilibplugins.PortworxVolumePluginName:
    		return pm.featureGate.Enabled(features.CSIMigrationPortworx)
    	default:
    		return false
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/internal/trace/resources.go

    func (s GoState) String() string {
    	switch s {
    	case GoUndetermined:
    		return "Undetermined"
    	case GoNotExist:
    		return "NotExist"
    	case GoRunnable:
    		return "Runnable"
    	case GoRunning:
    		return "Running"
    	case GoWaiting:
    		return "Waiting"
    	case GoSyscall:
    		return "Syscall"
    	}
    	return "Bad"
    }
    
    // ProcState represents the state of a proc.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/go/types/format.go

    	for i, arg := range args {
    		switch a := arg.(type) {
    		case nil:
    			arg = "<nil>"
    		case operand:
    			panic("got operand instead of *operand")
    		case *operand:
    			arg = operandString(a, qf)
    		case token.Pos:
    			if fset != nil {
    				arg = fset.Position(a).String()
    			}
    		case ast.Expr:
    			arg = ExprString(a)
    		case []ast.Expr:
    			var buf bytes.Buffer
    			buf.WriteByte('[')
    			writeExprList(&buf, a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/go/types/builtins.go

    				} else {
    					val = constant.MakeUnknown()
    				}
    			}
    
    		case *Slice, *Chan:
    			mode = value
    
    		case *Map:
    			if id == _Len {
    				mode = value
    			}
    
    		case *Interface:
    			if !isTypeParam(x.typ) {
    				break
    			}
    			if t.typeSet().underIs(func(t Type) bool {
    				switch t := arrayPtrDeref(t).(type) {
    				case *Basic:
    					if isString(t) && id == _Len {
    						return true
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/predicates.go

    	if t, _ := t.(*Basic); t != nil {
    		switch t.kind {
    		case UntypedBool:
    			return Typ[Bool]
    		case UntypedInt:
    			return Typ[Int]
    		case UntypedRune:
    			return universeRune // use 'rune' name
    		case UntypedFloat:
    			return Typ[Float64]
    		case UntypedComplex:
    			return Typ[Complex128]
    		case UntypedString:
    			return Typ[String]
    		}
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "Name":
    			z.Name, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Name")
    				return
    			}
    		case "Created":
    			z.Created, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Created")
    				return
    			}
    		case "Deleted":
    			z.Deleted, bts, err = msgp.ReadTimeBytes(bts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/order.go

    	// Note that we have an explicit return in each case, as that produces slightly better code (tested on Go 1.19).
    
    	switch ev.Type {
    	case EvGoCreate:
    		g = ev.Args[0]
    		init = gState{0, gDead}
    		next = gState{1, gRunnable}
    		return
    	case EvGoWaiting, EvGoInSyscall:
    		g = ev.G
    		init = gState{1, gRunnable}
    		next = gState{2, gWaiting}
    		return
    	case EvGoStart, EvGoStartLabel:
    		g = ev.G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/go/types/subst.go

    			return s
    		}
    
    	case *Pointer:
    		base := subst.typ(t.base)
    		if base != t.base {
    			return &Pointer{base: base}
    		}
    
    	case *Tuple:
    		return subst.tuple(t)
    
    	case *Signature:
    		// Preserve the receiver: it is handled during *Interface and *Named type
    		// substitution.
    		//
    		// Naively doing the substitution here can lead to an infinite recursion in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        case toco::IODataType::INT8:
          return DT_INT8;
        case toco::IODataType::INT16:
          return DT_INT16;
        case toco::IODataType::UINT16:
          return DT_UINT16;
        case toco::IODataType::INT32:
          return DT_INT32;
        case toco::IODataType::UINT32:
          return DT_UINT32;
        case toco::IODataType::INT64:
          return DT_INT64;
        case toco::IODataType::UINT8:
          return DT_UINT8;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	case REG_CR + 5:
    		return Ycr5
    	case REG_CR + 6:
    		return Ycr6
    	case REG_CR + 7:
    		return Ycr7
    	case REG_CR + 8:
    		return Ycr8
    
    	case REG_DR + 0:
    		return Ydr0
    	case REG_DR + 1:
    		return Ydr1
    	case REG_DR + 2:
    		return Ydr2
    	case REG_DR + 3:
    		return Ydr3
    	case REG_DR + 4:
    		return Ydr4
    	case REG_DR + 5:
    		return Ydr5
    	case REG_DR + 6:
    		return Ydr6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top