Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,218 for book (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  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. tests/multi_primary_keys_test.go

    		Name   string `gorm:"primarykey"`
    		Value  string
    	}
    
    	type Book struct {
    		ID     int
    		Name   string
    		Labels []Label
    	}
    
    	DB.Migrator().DropTable(&Label{}, &Book{})
    	if err := DB.AutoMigrate(&Label{}, &Book{}); err != nil {
    		t.Fatalf("failed to migrate, got %v", err)
    	}
    
    	book := Book{
    		Name: "my book",
    		Labels: []Label{
    			{Name: "region", Value: "emea"},
    		},
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/atomic_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	// LWSYNC is the "export" barrier recommended by Power ISA
    	// v2.07 book II, appendix B.2.2.2.
    	// LWSYNC is a load/load, load/store, and store/store barrier.
    	LWSYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 437 bytes
    - Viewed (0)
Back to top