Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for wmin (0.14 sec)

  1. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x3, 0x2, 0x0, 0, 0x0}
    	case ALWU:
    		return &inst{0x3, 0x6, 0x0, 0, 0x0}
    	case AMAX:
    		return &inst{0x33, 0x6, 0x0, 160, 0x5}
    	case AMAXU:
    		return &inst{0x33, 0x7, 0x0, 160, 0x5}
    	case AMIN:
    		return &inst{0x33, 0x4, 0x0, 160, 0x5}
    	case AMINU:
    		return &inst{0x33, 0x5, 0x0, 160, 0x5}
    	case AMRET:
    		return &inst{0x73, 0x0, 0x2, 770, 0x18}
    	case AMUL:
    		return &inst{0x33, 0x0, 0x0, 32, 0x1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      float rmin, rmax;
      if (&semantics == &APFloat::IEEEsingle()) {
        rmin = op.getMin().convertToFloat();
        rmax = op.getMax().convertToFloat();
      } else {
        rmin = op.getMin().convertToDouble();
        rmax = op.getMax().convertToDouble();
      }
      // Range boundaries must be valid.
      if (rmin >= rmax) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. docs/tr/docs/alternatives.md

    API'lara gereken bir diğer büyük özellik ise veri doğrulamadır, yani verinin çeşitli parametrelere bağlı olarak doğru ve tutarlı olduğundan emin olmaktır. Örneğin bir alanın `int` olmasına karar verdiniz, daha sonra rastgele bir metin değeri almasını istemezsiniz. Bu özellikle sisteme dışarıdan gelen veri için kullanışlı bir özellik oluyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. src/go/types/builtins.go

    			return
    		}
    		if nargs < min || min+1 < nargs {
    			check.errorf(call, WrongArgCount, invalidOp+"%v expects %d or %d arguments; found %d", call, min, min+1, nargs)
    			return
    		}
    
    		types := []Type{T}
    		var sizes []int64 // constant integer arguments, if any
    		for _, arg := range argList[1:] {
    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. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        protected Map<String, AuthSchemeProvider> authSchemeProviderMap;
    
        protected int connectionCheckInterval = 5; // sec
    
        protected long idleConnectionTimeout = 60 * 1000L; // 1min
    
        protected Pattern redirectHttpStatusPattern = Pattern.compile("[3][0-9][0-9]");
    
        protected boolean useRobotsTxtDisallows = true;
    
        protected boolean useRobotsTxtAllows = true;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller.go

    		if _, ok := ep.Annotations[resourcelock.LeaderElectionRecordAnnotationKey]; ok {
    			// when there are multiple controller-manager instances,
    			// we observe that it will delete leader-election endpoints after 5min
    			// and cause re-election
    			// so skip the delete here
    			// as leader-election only have endpoints without service
    			continue
    		}
    		key, err := controller.KeyFunc(ep)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		// the jump table at all.
    		// We check that min <= idx <= max and jump around the jump table
    		// if that test fails.
    		// We implement min <= idx <= max with 0 <= idx-min <= max-min, because
    		// we'll need idx-min anyway as the control value for the jump table.
    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins.go

    			return
    		}
    		if nargs < min || min+1 < nargs {
    			check.errorf(call, WrongArgCount, invalidOp+"%v expects %d or %d arguments; found %d", call, min, min+1, nargs)
    			return
    		}
    
    		types := []Type{T}
    		var sizes []int64 // constant integer arguments, if any
    		for _, arg := range argList[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            x = array_ops.fake_quant_with_min_max_vars(
                x,
                min=ops.convert_to_tensor(self._min[0]),
                max=ops.convert_to_tensor(self._max[0]),
                num_bits=8,
                narrow_range=False,
            )
            y = array_ops.fake_quant_with_min_max_vars(
                y,
                min=ops.convert_to_tensor(self._min[1]),
                max=ops.convert_to_tensor(self._max[1]),
                num_bits=8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/expr.go

    		// StringSym for constant strings.
    		return n
    
    	case ir.OMETHEXPR:
    		// TODO(mdempsky): Do this right after type checking.
    		n := n.(*ir.SelectorExpr)
    		return n.FuncName()
    
    	case ir.OMIN, ir.OMAX:
    		n := n.(*ir.CallExpr)
    		return walkMinMax(n, init)
    
    	case ir.ONOT, ir.ONEG, ir.OPLUS, ir.OBITNOT, ir.OREAL, ir.OIMAG, ir.OSPTR, ir.OITAB, ir.OIDATA:
    		n := n.(*ir.UnaryExpr)
    		n.X = walkExpr(n.X, init)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top