Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 7,522 for _case (0.04 sec)

  1. src/cmd/fix/jnitype.go

    	return typefix(f, func(s string) bool {
    		switch s {
    		case "C.jobject":
    			return true
    		case "C.jclass":
    			return true
    		case "C.jthrowable":
    			return true
    		case "C.jstring":
    			return true
    		case "C.jarray":
    			return true
    		case "C.jbooleanArray":
    			return true
    		case "C.jbyteArray":
    			return true
    		case "C.jcharArray":
    			return true
    		case "C.jshortArray":
    			return true
    		case "C.jintArray":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/net/http/status.go

    	case StatusFound:
    		return "Found"
    	case StatusSeeOther:
    		return "See Other"
    	case StatusNotModified:
    		return "Not Modified"
    	case StatusUseProxy:
    		return "Use Proxy"
    	case StatusTemporaryRedirect:
    		return "Temporary Redirect"
    	case StatusPermanentRedirect:
    		return "Permanent Redirect"
    	case StatusBadRequest:
    		return "Bad Request"
    	case StatusUnauthorized:
    		return "Unauthorized"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			prefixBits |= haveAddr16
    		case PrefixAddr32:
    			prefixBits |= haveAddr32
    		case PrefixXACQUIRE:
    			prefixBits |= haveXacquire
    		case PrefixXRELEASE:
    			prefixBits |= haveXrelease
    		case PrefixPT:
    			prefixBits |= haveHintTaken
    		case PrefixPN:
    			prefixBits |= haveHintNotTaken
    		case PrefixBND:
    			prefixBits |= haveBnd
    		}
    	}
    	switch inst.Op {
    	case JMP:
    		if inst.Opcode>>24 == 0xEB {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  4. 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)
  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. test/fixedbugs/issue43111.go

    	ch = make(chan int)
    	select {
    	case <-ch:
    	case nilch <- f():
    	}
    
    	ch = make(chan int)
    	select {
    	case v = <-ch:
    	case nilch <- f():
    	}
    
    	ch = make(chan int)
    	select {
    	case v := <-ch: _ = v
    	case nilch <- f():
    	}
    
    	ch = make(chan int)
    	select {
    	case v, ok = <-ch:
    	case nilch <- f():
    	}
    
    	ch = make(chan int)
    	select {
    	case v, ok := <-ch: _, _ = v, ok
    	case nilch <- f():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 11 22:02:02 UTC 2020
    - 896 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. 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)
  9. src/runtime/race/testdata/select_test.go

    		select {
    		case c <- true:
    		case c1 <- true:
    		}
    		compl <- true
    	}()
    	select {
    	case <-c:
    	case c1 <- true:
    	}
    	x = 2
    	<-compl
    }
    
    func TestNoRaceSelect2(t *testing.T) {
    	var x int
    	_ = x
    	compl := make(chan bool)
    	c := make(chan bool)
    	c1 := make(chan bool)
    	go func() {
    		select {
    		case <-c:
    		case <-c1:
    		}
    		x = 1
    		compl <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 05:25:54 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  10. 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)
Back to top