Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Nice (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	VIRTIO_NET_HDR_GSO_TCPV6  = 0x4
    	VIRTIO_NET_HDR_GSO_UDP_L4 = 0x5
    	VIRTIO_NET_HDR_GSO_ECN    = 0x80
    )
    
    type SchedAttr struct {
    	Size     uint32
    	Policy   uint32
    	Flags    uint64
    	Nice     int32
    	Priority uint32
    	Runtime  uint64
    	Deadline uint64
    	Period   uint64
    	Util_min uint32
    	Util_max uint32
    }
    
    const SizeofSchedAttr = 0x38
    
    type Cachestat_t struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		// header list bytes we're willing to accept.
    		if int64(len(frag)) > int64(2*remainSize) {
    			if http2VerboseLogs {
    				log.Printf("http2: header list too large")
    			}
    			// It would be nice to send a RST_STREAM before sending the GOAWAY,
    			// but the structure of the server's frame writer makes this difficult.
    			return mh, http2ConnectionError(http2ErrCodeProtocol)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. doc/go_spec.html

    </p>
    
    <h3 id="Function_declarations">Function declarations</h3>
    
    <!--
    	Given the importance of functions, this section has always
    	been woefully underdeveloped. Would be nice to expand this
    	a bit.
    -->
    
    <p>
    A function declaration binds an identifier, the <i>function name</i>,
    to a function.
    </p>
    
    <pre class="ebnf">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. docs/en/docs/release-notes.md

    * 📝 Add External Link: 10 Tips for adding SQLAlchemy to FastAPI. PR [#11036](https://github.com/tiangolo/fastapi/pull/11036) by [@Donnype](https://github.com/Donnype).
    * 📝 Add External Link: Tips on migrating from Flask to FastAPI and vice-versa. PR [#11029](https://github.com/tiangolo/fastapi/pull/11029) by [@jtemporal](https://github.com/jtemporal).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/GeertJohan/go.incremental,v1.0.0,h1:7AH+pY1XUgQE4Y1HcXYaMqAI0m9yrFqo/jt0CW30vsg=,ce46b3b717f8d2927046bcfb99c6f490b1b547a681e6b23240ac2c2292a891e8
    github.com/GeertJohan/go.rice,v1.0.0,h1:KkI6O9uMaQU3VEKaj01ulavtF7o1fWT7+pk/4voiMLQ=,2fc48b9422bf356c18ed3fe32ec52f6a8b87ac168f83d2eed249afaebcc3eeb8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Fixed bug in beta aggregated discovery endpoint which caused CRD discovery information to be temporarily missing when an Aggregated APIService with the same GroupVersion is deleted (and vice versa). ([#116770](https://github.com/kubernetes/kubernetes/pull/116770), [@alexzielenski](https://github.com/alexzielenski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		x := s.expr(n.X)
    		if to == from {
    			return x
    		}
    
    		// Special case for not confusing GC and liveness.
    		// We don't want pointers accidentally classified
    		// as not-pointers or vice-versa because of copy
    		// elision.
    		if to.IsPtrShaped() != from.IsPtrShaped() {
    			return s.newValue2(ssa.OpConvert, to, x, s.mem())
    		}
    
    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. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <sub-class-of type="application/x-matroska"/>
        <glob pattern="*.webm" />
      </mime-type>
    
      <mime-type type="x-conference/x-cooltalk">
        <_comment>Cooltalk Audio</_comment>
        <glob pattern="*.ice"/>
      </mime-type>
    
      <mime-type type="application/x-fictionbook+xml">
          <_comment>FictionBook document</_comment>
          <sub-class-of type="application/xml"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top