Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,832 for www (0.15 sec)

  1. src/test/java/org/codelibs/fess/validation/UriTypeValidatorTest.java

            values = "https://www.foo.com/\nhttps://www.bar.com/";
            assertFalse(UriTypeValidator.check(protocols, values));
    
            protocols = new String[] { "http:" };
            values = "https://www.foo.com/\n \nhttps://www.bar.com/";
            assertFalse(UriTypeValidator.check(protocols, values));
    
            protocols = new String[] { "http:" };
            values = "https://www.foo.com/\nhttps://www.bar.com/\n https://www.baz.com/";
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            url = "http://www.foo.com:8080/";
            result = "http://www.foo.com:8080/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://www.bar.com/";
            result = "http://www.bar.com/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://www.bar.com:8080/";
            result = "http://www.bar.com:8080/";
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            assertUrlLink("http://www.codelibs.org/?a=1&b=2", //
                    "http://www.codelibs.org/?a=1&b=2");
    
            // https
            assertUrlLink("https://www.codelibs.org/", //
                    "https://www.codelibs.org/");
            assertUrlLink("https://www.codelibs.org/あ", //
                    "https://www.codelibs.org/あ");
            assertUrlLink("https://www.codelibs.org/%E3%81%82", //
                    "https://www.codelibs.org/%E3%81%82");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

      - author: Nicoló Lino
        author_link: https://www.nlino.com
        link: https://github.com/softwarebloat/python-tracing-demo
        title: Instrument a FastAPI service adding tracing with OpenTelemetry and send/show traces in Grafana Tempo
      - author: Mikhail Rozhkov, Elena Samuylova
        author_link: https://www.linkedin.com/in/mnrozhkov/
        link: https://www.evidentlyai.com/blog/fastapi-tutorial
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  5. guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "site.ee",
              "site.fi",
              "site.fm",
              "site.gr",
              "www.leguide.ma",
              "site.ma",
              "some.org.mk",
              "site.mk",
              "site.tv",
              "site.us",
              "www.odev.us",
              "www.GOOGLE.com",
              "www.com",
              "google.com",
              "www7.google.co.uk",
              "google.Co.uK",
              "jobs.kt.com.",
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        // presented to this method should also be treated as absolute for the purposes of matching
        // to the server certificate.
        //   www.android.com  matches www.android.com
        //   www.android.com  matches www.android.com.
        //   www.android.com. matches www.android.com.
        //   www.android.com. matches www.android.com
        if (!hostname.endsWith(".")) {
          hostname += "."
        }
        if (!pattern.endsWith(".")) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

       * Maximum length of a full domain name, including separators, and leaving room for the root
       * label. See <a href="http://www.ietf.org/rfc/rfc2181.txt">RFC 2181</a> part 11.
       */
      private static final int MAX_LENGTH = 253;
    
      /**
       * Maximum size of a single part of a domain name. See <a
       * href="http://www.ietf.org/rfc/rfc2181.txt">RFC 2181</a> part 11.
       */
      private static final int MAX_DOMAIN_PART_LENGTH = 63;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  8. docs/en/data/sponsors.yml

      - url: https://www.svix.com/
        title: Svix - Webhooks as a service
        img: https://fastapi.tiangolo.com/img/sponsors/svix.svg
      - url: https://www.codacy.com/?utm_source=github&utm_medium=sponsors&utm_id=pioneers
        title: Take code reviews from hours to minutes
        img: https://fastapi.tiangolo.com/img/sponsors/codacy.png
    bronze:
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Mar 25 23:10:11 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEscapePattern(".*\\Qindex.html\\E$", "index.html$");
            assertEscapePattern("^\\Qhttp://www.codelibs.org/page.html\\E$", "^http://www.codelibs.org/page.html$");
            assertEscapePattern("\\Qhttp://www.codelibs.org/\\E.*", "http://www.codelibs.org/");
            assertEscapePattern("\\Qsmb://server/test/\\E.*", "smb://server/test/");
            assertEscapePattern(".*\\Q?\\E.*", "contains:?");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_security/test_tutorial005_an.py

        assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"'
    
    
    def test_incorrect_token_type():
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 19:07:10 GMT 2024
    - 15.4K bytes
    - Viewed (0)
Back to top