Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Hanlon (0.09 sec)

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

    // https://www.iana.org/domains/root/db/camera.html
    camera
    
    // camp : Binky Moon, LLC
    // https://www.iana.org/domains/root/db/camp.html
    camp
    
    // canon : Canon Inc.
    // https://www.iana.org/domains/root/db/canon.html
    canon
    
    // capetown : ZA Central Registry NPC trading as ZA Central Registry
    // https://www.iana.org/domains/root/db/capetown.html
    capetown
    
    // capital : Binky Moon, LLC
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            }
    
            this.canon = new String(out, 0, prefixLen);
            if (prefixLen > 1) {
                prefixLen--;
                final int firstSep = this.canon.indexOf('/', 1);
                if (firstSep < 0) {
                    this.share = this.canon.substring(1);
                    this.unc = "\\";
                } else if (firstSep == prefixLen) {
                    this.share = this.canon.substring(1, firstSep);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/SplitterTest.java

      public void testCharacterSplitWithTrim() {
        String jacksons = "arfo(Marlon)aorf, (Michael)orfa, afro(Jackie)orfa, ofar(Jemaine), aff(Tito)";
        Iterable<String> family =
            COMMA_SPLITTER
                .trimResults(CharMatcher.anyOf("afro").or(CharMatcher.whitespace()))
                .split(jacksons);
        assertThat(family)
            .containsExactly("(Marlon)", "(Michael)", "(Jackie)", "(Jemaine)", "(Tito)")
            .inOrder();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *          itself.
         */
    
        public String getName() {
            getUncPath0();
            if (canon.length() > 1) {
                int i = canon.length() - 2;
                while (canon.charAt(i) != '/') {
                    i--;
                }
                return canon.substring(i + 1);
            }
            if (share != null) {
                return share + '/';
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  5. docs/language_names.yml

    to: faka Tonga
    tr: Türkçe
    ts: Xitsonga
    tt: татар теле
    tw: Twi
    ty: Reo Tahiti
    ug: ئۇيغۇرچە‎
    uk: українська мова
    ur: اردو
    uz: Ўзбек
    ve: Tshivenḓa
    vi: Tiếng Việt
    vo: Volapük
    wa: walon
    wo: Wollof
    xh: isiXhosa
    yi: ייִדיש
    yo: Yorùbá
    za: Saɯ cueŋƅ
    zh: 简体中文
    zh-hant: 繁體中文
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

        }
    
        @Test
        @DisplayName("isAnonymous: depends on subject presence and super")
        void isAnonymous_behaviour() {
            Kerb5Authenticator anon = new Kerb5Authenticator((Subject) null);
            assertTrue(anon.isAnonymous(), "Null subject with default super should be anonymous");
    
            Kerb5Authenticator nonAnon = new Kerb5Authenticator(new Subject());
            assertFalse(nonAnon.isAnonymous());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SessionSetupHandlerTest.java

        static Stream<Arguments> implementations() {
            SessionSetupHandler anon = new SessionSetupHandler() {
                // no methods to implement (marker interface)
            };
            SessionSetupHandler mock = mock(SessionSetupHandler.class);
            return Stream.of(Arguments.of(anon), Arguments.of(mock));
        }
    
        @Test
        @DisplayName("Class is a public interface in expected package")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. docs/az/docs/index.md

    * <a href="https://jinja.palletsprojects.com" target="_blank"><code>jinja2</code></a> - Standart <abbr title="Şablon: Template">şablon</abbr> konfiqurasiyasından istifadə etmək istəyirsinizsə, tələb olunur.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  9. docs/en/data/external_links.yml

    Patrick Ladon author_link: https://dev.to/factorlive link: https://dev.to/factorlive/python-facebook-messenger-webhook-with-fastapi-on-glitch-4n90 title: Python Facebook messenger webhook with FastAPI on Glitch - author: Valon Januzaj author_link: https://www.linkedin.com/in/valon-januzaj-b02692187/ link: https://valonjanuzaj.medium.com/deploy-a-dockerized-fastapi-application-to-aws-cc757830ba1b title: Deploy a dockerized FastAPI application to AWS - author: Amit Chaudhary author_link: https://x.com/amitness...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 23K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/MediaType.java

       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
       * The <a href="https://en.wikipedia.org/wiki/Camera_Image_File_Format">Canon Image File
       * Format</a> ({@code crw} files), a widely-used "raw image" format for cameras. It is found in
       * {@code /etc/mime.types}, e.g. in <a href=
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top