Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 423 for book (0.05 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. 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)
  3. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>And all the created {@code Book} instances can be tested with:
     *
     * <pre>
     * new ClassSanityTester()
     *     .forAllPublicStaticMethods(Books.class)
     *     .thatReturn(Book.class)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

            request_result_counter.labels(destination_app='details', response_code=status).inc()
            return status, {'error': 'Sorry, product details are currently unavailable for this book.'}
    
    
    def getProductReviews(product_id, headers):
        # Do not remove. Bug introduced explicitly for illustration in fault injection task
        # TODO: Figure out how to achieve the same effect using Envoy retries/timeouts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>For testing against the returned instances from a static factory class, such as
     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>please use {@link ClassSanityTester#forAllPublicStaticMethods}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>And all the created {@code Book} instances can be tested with:
     *
     * <pre>
     * new ClassSanityTester()
     *     .forAllPublicStaticMethods(Books.class)
     *     .thatReturn(Book.class)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>For testing against the returned instances from a static factory class, such as
     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>please use {@link ClassSanityTester#forAllPublicStaticMethods}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SETBCR [2] (Flag(LT|GT))) => (MOVDconst [1])
    
    (SETBC [0] (InvertFlags bool)) => (SETBC [1] bool)
    (SETBC [1] (InvertFlags bool)) => (SETBC [0] bool)
    (SETBC [2] (InvertFlags bool)) => (SETBC [2] bool)
    
    (SETBCR [0] (InvertFlags bool)) => (SETBCR [1] bool)
    (SETBCR [1] (InvertFlags bool)) => (SETBCR [0] bool)
    (SETBCR [2] (InvertFlags bool)) => (SETBCR [2] bool)
    
    // ISEL auxInt values 0=LT 1=GT 2=EQ   arg2 ? arg0 : arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	registerNode bool
    	// List of taints to add to a node object when the kubelet registers itself.
    	registerWithTaints []v1.Taint
    	// Set to true to have the node register itself as schedulable.
    	registerSchedulable bool
    	// for internal book keeping; access only from within registerWithApiserver
    	registrationCompleted bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    				// (*Link).address. This may happen due to usage of PCALIGN directives
    				// larger than Funcalign, or usage of ISA 3.1 prefixed instructions
    				// (see ISA 3.1 Book I 1.9).
    				const ppc64maxFuncalign = 64
    				sectAlign = ppc64maxFuncalign
    				va = uint64(Rnd(int64(va), ppc64maxFuncalign))
    			}
    
    			// Set the length for the previous text section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top