Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for scot (1.39 sec)

  1. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    gov.ng
    gov.nl
    gov.nr
    gov.om
    gov.ph
    gov.pk
    gov.pl
    gov.pn
    gov.pr
    gov.ps
    gov.pt
    gov.py
    gov.qa
    gov.rs
    gov.ru
    gov.rw
    gov.sa
    gov.sb
    gov.sc
    gov.scot
    gov.sd
    gov.sg
    gov.sh
    gov.sl
    gov.so
    gov.ss
    gov.sx
    gov.sy
    gov.tj
    gov.tl
    gov.tm
    gov.tn
    gov.to
    gov.tr
    gov.tt
    gov.tw
    gov.ua
    gov.uk
    gov.vc
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  2. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/schwarz.html
    schwarz
    
    // science : dot Science Limited
    // https://www.iana.org/domains/root/db/science.html
    science
    
    // scot : Dot Scot Registry Limited
    // https://www.iana.org/domains/root/db/scot.html
    scot
    
    // search : Charleston Road Registry Inc.
    // https://www.iana.org/domains/root/db/search.html
    search
    
    // seat : SEAT, S.A. (Sociedad Unipersonal)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  3. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    gov.ng
    gov.nl
    gov.nr
    gov.om
    gov.ph
    gov.pk
    gov.pl
    gov.pn
    gov.pr
    gov.ps
    gov.pt
    gov.py
    gov.qa
    gov.rs
    gov.ru
    gov.rw
    gov.sa
    gov.sb
    gov.sc
    gov.scot
    gov.sd
    gov.sg
    gov.sh
    gov.sl
    gov.so
    gov.ss
    gov.sx
    gov.sy
    gov.tj
    gov.tl
    gov.tm
    gov.tn
    gov.to
    gov.tr
    gov.tt
    gov.tw
    gov.ua
    gov.uk
    gov.vc
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  4. android/guava/src/com/google/common/cache/Striped64.java

       * the capacity, it is doubled in size unless some other thread
       * holds the lock. If a hashed slot is empty, and lock is
       * available, a new Cell is created. Otherwise, if the slot
       * exists, a CAS is tried.  Retries proceed by "double hashing",
       * using a secondary hash (Marsaglia XorShift) to try to find a
       * free slot.
       *
       * The table size is capped because, when there are more threads
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jan 15 22:17:15 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

     */
    @SuppressSignatureCheck
    class YubikeyClientAuth {
      fun run() {
        // The typical PKCS11 slot, may vary with different hardware.
        val slot = 0
    
        val config = "--name=OpenSC\nlibrary=/Library/OpenSC/lib/opensc-pkcs11.so\nslot=$slot\n"
    
        // May fail with ProviderException with root cause like
        // sun.security.pkcs11.wrapper.PKCS11Exception: CKR_SLOT_ID_INVALID
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/ArrayIteratorTest.java

    import java.util.NoSuchElementException;
    
    import org.codelibs.core.exception.ClUnsupportedOperationException;
    import org.junit.Rule;
    import org.junit.Test;
    import org.junit.rules.ExpectedException;
    
    /**
     * @author shot
     * @author manhole
     */
    public class ArrayIteratorTest {
    
        /**
         * @see org.junit.rules.ExpectedException
         */
        @Rule
        public ExpectedException exception = ExpectedException.none();
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/EnumerationIterator.java

    import java.util.Enumeration;
    import java.util.Iterator;
    
    import org.codelibs.core.exception.ClUnsupportedOperationException;
    
    /**
     * Adapter to convert an {@link Enumeration} to an {@link Iterator}.
     *
     * @author shot
     * @param <T> the element type
     */
    public class EnumerationIterator<T> implements Iterator<T> {
    
        private Enumeration<T> enumeration = null;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/net/MimeTypeUtilTest.java

    import org.codelibs.core.io.ResourceUtil;
    import org.codelibs.core.lang.ClassUtil;
    import org.junit.Rule;
    import org.junit.Test;
    import org.junit.rules.ExpectedException;
    
    /**
     * @author shot
     */
    public class MimeTypeUtilTest {
    
        /**
         * @see org.junit.rules.ExpectedException
         */
        @Rule
        public ExpectedException exception = ExpectedException.none();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ResponseBody.kt

    import okhttp3.internal.chooseCharset
    import okhttp3.internal.closeQuietly
    import okhttp3.internal.readBomAsCharset
    import okio.Buffer
    import okio.BufferedSource
    import okio.ByteString
    import okio.use
    
    /**
     * A one-shot stream from the origin server to the client application with the raw bytes of the
     * response body. Each response body is supported by an active connection to the webserver. This
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/OutputStreamUtil.java

    import java.io.IOException;
    import java.io.OutputStream;
    
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
     * Utility class for {@link OutputStream} operations.
     *
     * @author shot
     */
    public abstract class OutputStreamUtil {
    
        /**
         * Do not instantiate.
         */
        protected OutputStreamUtil() {
        }
    
        /**
         * Creates a {@link FileOutputStream}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top