Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for ebook (0.27 sec)

  1. tensorflow/compiler/mlir/g3doc/_book.yaml

    Jacques Pienaar <******@****.***> 1645541783 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 22 15:00:03 UTC 2022
    - 674 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. tests/soft_delete_test.go

    	}
    
    	book := SoftDeleteBook{Name: "jinzhu", Pages: 10}
    	DB.Save(&book)
    
    	var count int64
    	if DB.Model(&SoftDeleteBook{}).Where("name = ?", book.Name).Count(&count).Error != nil || count != 1 {
    		t.Errorf("Count soft deleted record, expects: %v, got: %v", 1, count)
    	}
    
    	var pages uint
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. samples/bookinfo/swagger.yaml

            description: "Publisher of the book"
          language:
            type: "string"
            description: "Language of the book"
          author:
            type: "string"
            description: "Author of the book"
          ISBN-10:
            type: "string"
            description: "ISBN-10 of the book"
          ISBN-13:
            type: "string"
            description: "ISBN-13 of the book"
          year:
            type: "integer"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  6. .gitignore

    TODO*
    documents
    coverage.txt
    _book
    .idea
    vendor
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jul 14 12:05:22 UTC 2022
    - 56 bytes
    - Viewed (0)
  7. 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)
  8. src/compress/flate/example_test.go

    	// that are expected to be found in the actual data stream.
    	const dict = `<?xml version="1.0"?>` + `<book>` + `<data>` + `<meta name="` + `" content="`
    
    	// The data to compress should (but is not required to) contain frequent
    	// substrings that match those in the dictionary.
    	const data = `<?xml version="1.0"?>
    <book>
    	<meta name="title" content="The Go Programming Language"/>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  9. src/math/cmplx/log.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: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  10. 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)
Back to top