Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for ebook (0.19 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <sub-class-of type="application/x-bplist"/>
        <glob pattern="*.memgraph"/>
      </mime-type>
    
      <mime-type type="application/x-mobipocket-ebook">
        <acronym>MOBI</acronym>
        <_comment>Mobipocket Ebook</_comment>
        <magic priority="60">
          <match value="BOOKMOBI" type="string" offset="0:60" />
        </magic>
        <glob pattern="*.prc"/>
        <glob pattern="*.mobi"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. test/typeparam/struct.go

    	E[int]
    	v string
    }
    
    type Eint = E[int]
    type Ebool = E[bool]
    type Eint2 = Eint
    
    type S2 struct {
    	Eint
    	Ebool
    	v string
    }
    
    type S3 struct {
    	*E[int]
    }
    
    func main() {
    	s1 := S1{Eint{2}, "foo"}
    	if got, want := s1.E.v, 2; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	s2 := S2{Eint{3}, Ebool{true}, "foo"}
    	if got, want := s2.Eint.v, 3; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 801 bytes
    - Viewed (0)
  3. samples/bookinfo/src/details/details.rb

        json = JSON.parse(response.body)
        book = json['items'][0]['volumeInfo']
    
        language = book['language'] === 'en'? 'English' : 'unknown'
        type = book['printType'] === 'BOOK'? 'paperback' : 'unknown'
        isbn10 = get_isbn(book, 'ISBN_10')
        isbn13 = get_isbn(book, 'ISBN_13')
    
        return {
            'id' => id,
            'author': book['authors'][0],
            'year': book['publishedDate'],
            'type' => type,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

        }
    
        .appendix .toc > dl > dt,
        .appendix .toc > dl > dt:last-of-type
        .book .home .toc > dl > dt,
        .book .home .toc > dl > dt:last-of-type
        .chapter .toc > dl > dt,
        .chapter .toc > dl > dt:last-of-type {
            padding: 0.5rem 0;
            margin: 0;
        }
    
        .appendix .toc a,
        .book .home .toc a,
        .chapter .toc a {
            padding-left: 10px;
            font-weight: 400;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/print.css

    }
    
    a {
        color: black;
    }
    
    /*
     * Book title page
     */
    
    .titlepage h1.title {
        font-size: 360%;
        margin: 0;
        color: black;
    }
    
    .titlepage h2.subtitle {
        font-size: 240%;
        margin: 0;
        color: black;
    }
    
    .titlepage .releaseinfo {
        margin-top: 50%;
        font-size: 180%;
        color: black;
    }
    
    .book .titlepage div.title {
        text-align: right;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. docs/en/docs/learn/index.md

    # Learn
    
    Here are the introductory sections and the tutorials to learn **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 195 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl

    1 1 2 0 0 0 0 0 0 0 0 0 DUMMY book toc,title,example figure before example before equation before table before procedure before 0 .cls-1 { fill: #02303a; } Gradle DSL Reference Community Community Home Community Forums Community Plugins Training News Newsletter Blog Twitter Develocity github Docs User Manual DSL Reference Release Notes Javadoc News Blog Newsletter Twitter Products Build Scan™ Build Cache Develocity Docs Get Help Forums GitHub Training Services Stay UP-TO-DATE on new features and...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 16:51:07 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  8. src/math/cmplx/pow.go

    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/templates/productpage.html

        </div>
    
      </div>
    </div>
    
    <!-- Book details table -->
    <div class="container mt-8 mx-auto px-4 sm:px-6 lg:px-8">
      <div class="mt-4 py-10">
          <div class="max-w-2xl">
            <div class="flow-root">
              {% if detailsStatus == 200: %}
              <h4 class="text-3xl font-semibold">Book Details</h4>
              <div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. samples/ratelimit/local-rate-limit-service.yaml

    # This example shows how to use Istio local rate limiting with descriptors to limit by path. 
    # This uses the base book-info demo and adds rate limiting by path, specifically rate limiting the product page
    # to 10 requests per minute, and the overall fdqn will be able to accept 100 requests per minute. 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top