Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 964 for casePC (0.12 sec)

  1. src/runtime/preempt.go

    			throw("invalid g status")
    
    		case _Gdead:
    			// Nothing to suspend.
    			//
    			// preemptStop may need to be cleared, but
    			// doing that here could race with goroutine
    			// reuse. Instead, goexit0 clears it.
    			return suspendGState{dead: true}
    
    		case _Gcopystack:
    			// The stack is being copied. We need to wait
    			// until this is done.
    
    		case _Gpreempted:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      std::vector<std::string> quantization_attributes;
      switch (op_type) {
        case OpType::kDynamicRangeOp:
          quantization_attributes = {"rhs_quantization"};
          break;
        case OpType::kUnaryOp:
          quantization_attributes = {"quantization"};
          break;
        case OpType::kBinaryOp:
          quantization_attributes = {"lhs_quantization", "rhs_quantization",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pkg/scheduler/eventhandlers.go

    	for gvk, at := range gvkMap {
    		switch gvk {
    		case framework.Node, framework.Pod:
    			// Do nothing.
    		case framework.CSINode:
    			if handlerRegistration, err = informerFactory.Storage().V1().CSINodes().Informer().AddEventHandler(
    				buildEvtResHandler(at, framework.CSINode, "CSINode"),
    			); err != nil {
    				return err
    			}
    			handlers = append(handlers, handlerRegistration)
    		case framework.CSIDriver:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/LongMath.java

        switch (mode) {
          case UNNECESSARY:
            checkRoundingUnnecessary(x == floorPow);
            // fall through
          case FLOOR:
          case DOWN:
            return logFloor;
          case CEILING:
          case UP:
            return logFloor + lessThanBranchFree(floorPow, x);
          case HALF_DOWN:
          case HALF_UP:
          case HALF_EVEN:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. src/mime/encodedword.go

    	switch encoding {
    	case 'B', 'b':
    		return base64.StdEncoding.DecodeString(text)
    	case 'Q', 'q':
    		return qDecode(text)
    	default:
    		return nil, errInvalidWord
    	}
    }
    
    func (d *WordDecoder) convert(buf *strings.Builder, charset string, content []byte) error {
    	switch {
    	case strings.EqualFold("utf-8", charset):
    		buf.Write(content)
    	case strings.EqualFold("iso-8859-1", charset):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    	// if there is an interface, the other type must implement the
    	// interface.
    	exact
    )
    
    func (m unifyMode) String() string {
    	switch m {
    	case 0:
    		return "inexact"
    	case assign:
    		return "assign"
    	case exact:
    		return "exact"
    	case assign | exact:
    		return "assign, exact"
    	}
    	return fmt.Sprintf("mode %d", m)
    }
    
    // unify attempts to unify x and y and reports whether it succeeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_test.go

    			dsErr:   false,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			err, fatal := checkBadIPConfig(c.proxy, false)
    			if err != nil && !c.ssErr {
    				t.Errorf("unexpected error in single-stack case: %v", err)
    			} else if err == nil && c.ssErr {
    				t.Errorf("unexpected lack of error in single-stack case")
    			} else if fatal != c.ssFatal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pkg/spiffe/spiffe_test.go

    	input1 := map[string]string{
    		"foo": s1.Listener.Addr().String(),
    	}
    	// This simulates the case when there are multiple different servers to talk to.
    	input2 := map[string]string{
    		"foo": s1.Listener.Addr().String(),
    		"bar": s2.Listener.Addr().String(),
    	}
    
    	cases := []struct {
    		name         string
    		in           map[string]string
    		extraCerts   []*x509.Certificate
    		statusCode   int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/extensions.go

    	switch class {
    	case istionetworking.ListenerClassGateway:
    		return typeapi.WorkloadMode_CLIENT
    	case istionetworking.ListenerClassSidecarInbound:
    		return typeapi.WorkloadMode_SERVER
    	case istionetworking.ListenerClassSidecarOutbound:
    		return typeapi.WorkloadMode_CLIENT
    	case istionetworking.ListenerClassUndefined:
    		// this should not happen, just in case
    		return typeapi.WorkloadMode_CLIENT
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/go/types/call.go

    			switch exp := exp.(type) {
    			case *Const:
    				assert(exp.Val() != nil)
    				x.mode = constant_
    				x.typ = exp.typ
    				x.val = exp.val
    			case *TypeName:
    				x.mode = typexpr
    				x.typ = exp.typ
    			case *Var:
    				x.mode = variable
    				x.typ = exp.typ
    				if pkg.cgo && strings.HasPrefix(exp.name, "_Cvar_") {
    					x.typ = x.typ.(*Pointer).base
    				}
    			case *Func:
    				x.mode = funcMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top