Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 372 for coffee (0.25 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    club
    
    // clubmed : 2015-06-25 Club Méditerranée S.A.
    clubmed
    
    // coach : 2014-10-09 Binky Moon, LLC
    coach
    
    // codes : 2013-10-31 Binky Moon, LLC
    codes
    
    // coffee : 2013-10-17 Binky Moon, LLC
    coffee
    
    // college : 2014-01-16 XYZ.COM LLC
    college
    
    // cologne : 2014-02-05 dotKoeln GmbH
    cologne
    
    // comcast : 2015-07-23 Comcast IP Holdings I, LLC
    comcast
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IFT_CNR = 85 #53466
    pkg syscall (freebsd-riscv64), const IFT_CNR ideal-int #53466
    pkg syscall (freebsd-riscv64), const IFT_COFFEE = 132 #53466
    pkg syscall (freebsd-riscv64), const IFT_COFFEE ideal-int #53466
    pkg syscall (freebsd-riscv64), const IFT_COMPOSITELINK = 155 #53466
    pkg syscall (freebsd-riscv64), const IFT_COMPOSITELINK ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IFT_CHANNEL ideal-int
    pkg syscall (freebsd-arm64), const IFT_CNR = 85
    pkg syscall (freebsd-arm64), const IFT_CNR ideal-int
    pkg syscall (freebsd-arm64), const IFT_COFFEE = 132
    pkg syscall (freebsd-arm64), const IFT_COFFEE ideal-int
    pkg syscall (freebsd-arm64), const IFT_COMPOSITELINK = 155
    pkg syscall (freebsd-arm64), const IFT_COMPOSITELINK ideal-int
    pkg syscall (freebsd-arm64), const IFT_DCN = 141
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (freebsd-386), const IFT_CES = 133
    pkg syscall (freebsd-386), const IFT_CHANNEL = 70
    pkg syscall (freebsd-386), const IFT_CNR = 85
    pkg syscall (freebsd-386), const IFT_COFFEE = 132
    pkg syscall (freebsd-386), const IFT_COMPOSITELINK = 155
    pkg syscall (freebsd-386), const IFT_DCN = 141
    pkg syscall (freebsd-386), const IFT_DIGITALPOWERLINE = 138
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. LICENSE

    ## Some of TensorFlow's code is derived from Caffe, which is subject to the following copyright notice:
    
    COPYRIGHT
    
    All contributions by the University of California:
    
    Copyright (c) 2014, The Regents of the University of California (Regents)
    All rights reserved.
    
    All other contributions:
    
    Copyright (c) 2014, the respective contributors
    All rights reserved.
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Nov 29 17:31:56 GMT 2021
    - 13.3K bytes
    - Viewed (0)
  6. docs_src/body_nested_models/tutorial007_py310.py

        tax: float | None = None
        tags: set[str] = set()
        images: list[Image] | None = None
    
    
    class Offer(BaseModel):
        name: str
        description: str | None = None
        price: float
        items: list[Item]
    
    
    @app.post("/offers/")
    async def create_offer(offer: Offer):
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jan 07 14:11:31 GMT 2022
    - 520 bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/TopKSelectorTest.java

        for (int i = 0; i < 10; i++) {
          top.offer(i);
        }
        assertThat(top.topK()).isEmpty();
      }
    
      public void testNoElementsOffered() {
        TopKSelector<Integer> top = TopKSelector.least(10);
        assertThat(top.topK()).isEmpty();
      }
    
      public void testOfferedFewerThanK() {
        TopKSelector<Integer> top = TopKSelector.least(10);
        top.offer(3);
        top.offer(5);
        top.offer(2);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingQueue.java

     * methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change the
     * behavior of {@link #offer} which can lead to unexpected behavior. In this case, you should
     * override {@code offer} as well, either providing your own implementation, or delegating to the
     * provided {@code standardOffer} method.
     *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jun 29 19:42:21 GMT 2021
    - 4.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/QueueOfferTester.java

      public void testOffer_supportedNotPresent() {
        assertTrue("offer(notPresent) should return true", getQueue().offer(e3()));
        expectAdded(e3());
      }
    
      @CollectionFeature.Require({SUPPORTS_ADD, ALLOWS_NULL_VALUES})
      public void testOffer_nullSupported() {
        assertTrue("offer(null) should return true", getQueue().offer(null));
        expectAdded((E) null);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  10. docs_src/body_nested_models/tutorial007_py39.py

        tax: Union[float, None] = None
        tags: set[str] = set()
        images: Union[list[Image], None] = None
    
    
    class Offer(BaseModel):
        name: str
        description: Union[str, None] = None
        price: float
        items: list[Item]
    
    
    @app.post("/offers/")
    async def create_offer(offer: Offer):
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 570 bytes
    - Viewed (0)
Back to top