Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 806 for sounds (0.14 sec)

  1. src/image/jpeg/writer.go

    		cb, cr [4]block
    		// DC components are delta-encoded.
    		prevDCY, prevDCCb, prevDCCr int32
    	)
    	bounds := m.Bounds()
    	switch m := m.(type) {
    	// TODO(wathiede): switch on m.ColorModel() instead of type.
    	case *image.Gray:
    		for y := bounds.Min.Y; y < bounds.Max.Y; y += 8 {
    			for x := bounds.Min.X; x < bounds.Max.X; x += 8 {
    				p := image.Pt(x, y)
    				grayToY(m, p, &b)
    				prevDCY = e.writeBlock(&b, 0, prevDCY)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    project}AllowLabelDropfalseC{89, 78}{205, 78}StylestrokeHeadArrow.4285709857940674Tail.5Bounds{{155, 53.596}, {118, 14}}ClassShapedGraphicFi.04239773377776146Rot{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural \f0\fs24 \cf0 constructBuildPlan()}Bounds{{205.5, 74}, {17, 208}}ClassShapedGraphicHF{1, 0.5}{1, -0.5}{-0.470589, 0.149038}{-0.5,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 11 17:19:02 UTC 2017
    - 96.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    //
    //   - Words should be '-' separated, as in "gopls/completion/errors-latency"
    //
    //   - Histograms should use bucket names identifying upper bounds with '<'.
    //     For example given two counters "gopls/completion/latency:<50ms" and
    //     "gopls/completion/latency:<100ms", the "<100ms" bucket counts events
    //     with latency in the half-open interval [50ms, 100ms).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/assemblies/extension/kibana/fess_log.ndjson

    "","kibanaSavedObjectMeta":{"searchSourceJSON":"{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"search-query-counts-per-sec","uiStateJSON":"{}","version":1,"visState":"{\"title\":\"search-query-counts-per-sec\",\"type\":\"histogram\",\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":t...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue30116.out

                  slice[-9876543210:9876543210] runtime error: slice bounds out of range [:9876543210] with capacity 3
                          slice[-1:-9876543210] runtime error: slice bounds out of range [:-9876543210]
                                   slice[-1:-1] runtime error: slice bounds out of range [:-1]
                                    slice[-1:0] runtime error: slice bounds out of range [-1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 53.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue30116u.out

                                                                slice[4:0] runtime error: slice bounds out of range [4:0]
                                                                slice[4:3] runtime error: slice bounds out of range [4:3]
                                                                slice[4:4] runtime error: slice bounds out of range [:4] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 44K bytes
    - Viewed (0)
  7. test/fixedbugs/issue4232.go

    	_ = a[9:10]
    	_ = a[10:10]
    	_ = a[9:12]            // ERROR "invalid slice index 12|index .*out of bounds"
    	_ = a[11:12]           // ERROR "invalid slice index 11|index .*out of bounds"
    	_ = a[1<<100 : 1<<110] // ERROR "overflows int|integer constant overflow|invalid slice index 1 << 100|index out of bounds"
    
    	var s []int
    	_ = s[-1]  // ERROR "invalid slice index -1|index .*out of bounds|must not be negative"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. src/crypto/aes/cipher_asm.go

    	c := aesCipherGCM{aesCipherAsm{aesCipher{l: uint8(len(key) + 28)}}}
    	var rounds int
    	switch len(key) {
    	case 128 / 8:
    		rounds = 10
    	case 192 / 8:
    		rounds = 12
    	case 256 / 8:
    		rounds = 14
    	default:
    		return nil, KeySizeError(len(key))
    	}
    
    	expandKeyAsm(rounds, &key[0], &c.enc[0], &c.dec[0])
    	if supportsAES && supportsGFMUL {
    		return &c, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/model/internal/type/TypeVariableTypeWrapper.java

        private final TypeWrapper[] bounds;
        private final int hashCode;
    
        public TypeVariableTypeWrapper(String name, TypeWrapper[] bounds, int hashCode) {
            this.name = name;
            this.bounds = bounds;
            this.hashCode = hashCode;
        }
    
        @Override
        public Class<?> getRawClass() {
            if (bounds.length > 0) {
                return bounds[0].getRawClass();
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  10. test/fixedbugs/issue7150.go

    	_ = [10]int{2: 10, 15: 30}      // ERROR "index 15 out of bounds \[0:10\]|out of range"
    	_ = [10]int{5: 5, 1: 1, 12: 12} // ERROR "index 12 out of bounds \[0:10\]|out of range"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 754 bytes
    - Viewed (0)
Back to top