Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for h263 (0.08 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedTypeName-259]
    	_ = x[ErrParseExpectedWhenClause-260]
    	_ = x[ErrParseUnsupportedToken-261]
    	_ = x[ErrParseUnsupportedLiteralsGroupBy-262]
    	_ = x[ErrParseExpectedMember-263]
    	_ = x[ErrParseUnsupportedSelect-264]
    	_ = x[ErrParseUnsupportedCase-265]
    	_ = x[ErrParseUnsupportedCaseClause-266]
    	_ = x[ErrParseUnsupportedAlias-267]
    	_ = x[ErrParseUnsupportedSyntax-268]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/net/http/request.go

    		return 0, nil
    	}
    	// If they asked for a 32KB byte read but only 5 bytes are
    	// remaining, no need to read 32KB. 6 bytes will answer the
    	// question of the whether we hit the limit or go past it.
    	// 0 < len(p) < 2^63
    	if int64(len(p))-1 > l.n {
    		p = p[:l.n+1]
    	}
    	n, err = l.r.Read(p)
    
    	if int64(n) <= l.n {
    		l.n -= int64(n)
    		l.err = err
    		return n, err
    	}
    
    	n = int(l.n)
    	l.n = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    ## Changes by Kind
    
    ### API Change
    
    - Aggregated discovery now returns `responseKind: {}` for resources which are missing group/version/kind information, to ensure compatibility with v0.26.0-v0.26.3 clients. ([#119835](https://github.com/kubernetes/kubernetes/pull/119835), [@liggitt](https://github.com/liggitt)) [SIG API Machinery and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.27.md

    ## Changes by Kind
    
    ### API Change
    
    - Aggregated discovery now returns `responseKind: {}` for resources which are missing group/version/kind information, to ensure compatibility with v0.26.0-v0.26.3 clients. ([#119835](https://github.com/kubernetes/kubernetes/pull/119835), [@liggitt](https://github.com/liggitt)) [SIG API Machinery and Testing]
    
    ### Feature
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. RELEASE.md

        ([CVE-2022-23595](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23595))
    *   Updates `icu` to `69.1` to handle
        [CVE-2020-10531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10531)
    
    # Release 2.6.3
    
    This releases introduces several vulnerability fixes:
    
    *   Fixes a floating point division by 0 when executing convolution operators
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top