Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for max8 (0.05 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CMP(W|WU) (MOVDconst [c]) x) => (InvertFlags (CMP(W|WU)const x [int32(c)]))
    
    // Match (x >> c) << d to 'rotate then insert selected bits [into zero]'.
    (SLDconst (SRDconst x [c]) [d]) => (RISBGZ x {s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63))})
    
    // Match (x << c) >> d to 'rotate then insert selected bits [into zero]'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/compress/flate/testdata/huffman-rand-max.golden

    huffman-rand-max.golden...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  3. src/compress/flate/testdata/huffman-rand-max.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  4. src/time/time_test.go

    		}
    	}
    }
    
    func TestParseDurationRoundTrip(t *testing.T) {
    	// https://golang.org/issue/48629
    	max0 := Duration(math.MaxInt64)
    	max1, err := ParseDuration(max0.String())
    	if err != nil || max0 != max1 {
    		t.Errorf("round-trip failed: %d => %q => %d, %v", max0, max0.String(), max1, err)
    	}
    
    	min0 := Duration(math.MinInt64)
    	min1, err := ParseDuration(min0.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/compress/flate/testdata/huffman-null-max.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      auto maxs = tensor.quantization->max;
      if (mins.size() != maxs.size() || mins.empty()) return nullptr;
    
      llvm::SmallVector<llvm::APFloat, 4> min_maxs;
      min_maxs.reserve(mins.size() * 2);
      for (int i = 0, end = mins.size(); i < end; ++i) {
        llvm::APFloat min(mins[i]);
        llvm::APFloat max(maxs[i]);
        min_maxs.push_back(min);
        min_maxs.push_back(max);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. plugin/pkg/admission/limitranger/admission_test.go

    			Limits: []api.LimitRangeItem{
    				{
    					Type:                 limitType,
    					Min:                  min,
    					Max:                  max,
    					Default:              defaultLimit,
    					DefaultRequest:       defaultRequest,
    					MaxLimitRequestRatio: maxLimitRequestRatio,
    				},
    			},
    		},
    	}
    	externalLimitRange := corev1.LimitRange{}
    	v1.Convert_core_LimitRange_To_v1_LimitRange(&internalLimitRage, &externalLimitRange, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    				//    min = w - delta
    				//    max = MaxInt - delta
    				//
    				// And we prove that:
    				//    if min<max: min < x AND x <= max
    				//    if min>max: min < x OR  x <= max
    				//
    				// This is always correct, even in case of overflow.
    				//
    				// If the initial fact is x+delta >= w instead, the derived conditions are:
    				//    if min<max: min <= x AND x <= max
    				//    if min>max: min <= x OR  x <= max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/javadoc.css

        grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto);
    }
    @media screen and (max-width: 1000px) {
        .four-column-summary {
            display: grid;
            grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
        }
    }
    @media screen and (max-width: 800px) {
        .two-column-search-results {
            display: grid;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    // will round up). That is, even if max is small, the returned size is not guaranteed
    // to be equal to max. max is allowed to be less than min, in which case it is as if
    // max == min.
    func (m *pallocData) findScavengeCandidate(searchIdx uint, minimum, max uintptr) (uint, uint) {
    	if minimum&(minimum-1) != 0 || minimum == 0 {
    		print("runtime: min = ", minimum, "\n")
    		throw("min must be a non-zero power of 2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top