Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for max8 (0.13 sec)

  1. 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])
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// result: (RISBGZ x {s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63))})
    	for {
    		d := auxIntToUint8(v.AuxInt)
    		if v_0.Op != OpS390XSRDconst {
    			break
    		}
    		c := auxIntToUint8(v_0.AuxInt)
    		x := v_0.Args[0]
    		v.reset(OpS390XRISBGZ)
    		v.Aux = s390xRotateParamsToAux(s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63)))
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

     .uk-container{padding-left:0;padding-right:0}.uk-container-xsmall{max-width:750px}.uk-container-small{max-width:900px}.uk-container-large{max-width:1400px}.uk-container-xlarge{max-width:1600px}.uk-container-expand{max-width:none}.uk-container-expand-left{margin-left:0}.uk-container-expand-right{margin-right:0}@media (min-width:640px){.uk-container-expand-left.uk-container-xsmall,.uk-container-expand-right.uk-container-xsmall{max-width:calc(50% + (750px / 2) - 30px)}.uk-container-expand-left.uk-...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	}
    	if max := t.maxFrameReadSize(); max != 0 {
    		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: max})
    	}
    	if max := t.maxHeaderListSize(); max != 0 {
    		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
    	}
    	if maxHeaderTableSize != http2initialHeaderTableSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    21"]},stretch:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"fit-content":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    findLeaves(org.junit.runner.Description, org.junit.runner.Description, java.util.List); } org/junit/experimental/max/MaxCore$1$1.class package org.junit.experimental.max; synchronized class MaxCore$1$1 extends org.junit.runners.Suite { void MaxCore$1$1(MaxCore$1, Class, java.util.List); } org/junit/experimental/max/MaxHistory$RememberingListener.class package org.junit.experimental.max; final synchronized class MaxHistory$RememberingListener extends org.junit.runner.notification.RunListener { private...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    }
    
    const (
    	// Limits on various DNS parameters. These are derived from
    	// restrictions in Linux libc name resolution handling.
    	// Max number of DNS name servers.
    	MaxDNSNameservers = 3
    	// Max number of domains in the search path list.
    	MaxDNSSearchPaths = 32
    	// Max number of characters in the search path.
    	MaxDNSSearchListChars = 2048
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. doc/go_spec.html

    (and similarly for <code>max</code>).
    If all arguments are constant, the result is constant.
    </p>
    
    <pre>
    var x, y int
    m := min(x)                 // m == x
    m := min(x, y)              // m is the smaller of x and y
    m := max(x, y, 10)          // m is the larger of x and y but at least 10
    c := max(1, 2.0, 10)        // c == 10.0 (floating-point kind)
    f := max(0, float32(x))     // type of f is float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %248 = "tf.Cast"(%247) {Truncate = false, device = ""} : (tensor<?xi64>) -> tensor<?xi32>
      %249 = "tf.BroadcastTo"(%248, %221) {device = ""} : (tensor<?xi32>, tensor<1xi32>) -> tensor<?xi32>
      %250 = "tf.Max"(%249, %15) {device = "", keep_dims = false} : (tensor<?xi32>, tensor<1xi32>) -> tensor<i32>
      %251 = "tf.Maximum"(%14, %250) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.10.md

    * Kubelet now supports container log rotation for container runtimes implementing CRI (container runtime interface).  The feature can be enabled with feature gate `CRIContainerLogRotation`. The flags `--container-log-max-size` and `--container-log-max-files` can be used to configure the rotation behavior. ([#59898](https://github.com/kubernetes/kubernetes/pull/59898), [@Random-Liu](https://github.com/Random-Liu))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top