Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 190 for uri (0.14 sec)

  1. src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java

        }
    
        public static SchemaFactory newW3cXmlSchemaFactory(final boolean external) {
            final SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
            if (!external) {
                disableExternalResources(schemaFactory);
            }
            return schemaFactory;
        }
    
        /**
         * RELAX NGのための{@link SchemaFactory}を生成します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

    internal const val PATH_SEGMENT_ENCODE_SET = " \"<>^`{}|/\\?#"
    internal const val PATH_SEGMENT_ENCODE_SET_URI = "[]"
    internal const val QUERY_ENCODE_SET = " \"'<>#"
    internal const val QUERY_COMPONENT_REENCODE_SET = " \"'<>#&="
    internal const val QUERY_COMPONENT_ENCODE_SET = " !\"#$&'(),/:;<=>?@[]\\^`{|}~"
    internal const val QUERY_COMPONENT_ENCODE_SET_URI = "\\^`{|}"
    internal const val FORM_ENCODE_SET = " !\"#$&'()+,/:;<=>?@[\\]^`{|}~"
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/PercentEscaper.java

     * encoding scheme. The set of safe characters (those which remain unescaped) can be specified on
     * construction.
     *
     * <p>This class is primarily used for creating URI escapers in {@link UrlEscapers} but can be used
     * directly if required. While URI escapers impose specific semantics on which characters are
     * considered 'safe', this class has a minimal set of restrictions.
     *
     * <p>When escaping a String, the following rules apply:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 8.7K bytes
    - Viewed (0)
  4. ci/official/envs/ci_default

    TFCI_ARTIFACT_FINAL_GCS_ENABLE=
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH=
    TFCI_ARTIFACT_FINAL_GCS_URI=
    TFCI_ARTIFACT_FINAL_PYPI_ARGS=
    TFCI_ARTIFACT_FINAL_PYPI_ENABLE=
    TFCI_ARTIFACT_LATEST_GCS_URI=
    TFCI_ARTIFACT_STAGING_GCS_ENABLE=
    TFCI_ARTIFACT_STAGING_GCS_URI=
    TFCI_BAZEL_BAZELRC_ARGS=
    TFCI_BAZEL_COMMON_ARGS=
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=
    TFCI_BUILD_PIP_PACKAGE_ARGS=
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 21:16:27 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  5. gradle/wrapper/gradle-wrapper.jar

    systemProperties; public final int networkTimeout; public static java.util.HashMap convertSystemPropert(java.util.Properties); public void Download(Logger, java.util.HashMap, int); public static java.net.URI safeUri(java.net.URI); public final void configureProxyAuthen(); public final void addBasicAuthenticati(java.net.URI, java.net.URLConnection); public final String calculateUserAgent(); } org/gradle/wrapper/ExclusiveFileAccessM.class package org.gradle.wrapper; public final synchronized class ExclusiveFileAccessM...
    Archive
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Dec 24 09:00:26 GMT 2023
    - 42.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        val level = interceptor.getLevel()
      }
    
      @Test @Disabled
      fun httpUrl() {
        val httpUrl: HttpUrl = HttpUrl.get("")
        val url: URL = httpUrl.url()
        val uri: URI = httpUrl.uri()
        val scheme: String = httpUrl.scheme()
        val encodedUsername: String = httpUrl.encodedUsername()
        val username: String = httpUrl.username()
        val encodedPassword: String = httpUrl.encodedPassword()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  7. internal/s3select/select_test.go

    {"request":{"uri":"/2","header":{}}}`,
    		},
    		{
    			name:  "is-not-missing-2",
    			query: `select * from s3object[*] as s where s.request.header is not missing`,
    			wantResult: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}
    {"request":{"uri":"/2","header":{}}}`,
    			withJSON: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}
    {"request":{"uri":"/2","header":{}}}`,
    		},
    		{
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/error/redirect.jsp

    String servletName = (String)request.getAttribute("javax.servlet.error.servlet_name");
    String requestUri = (String)request.getAttribute("javax.servlet.error.request_uri");
    String type = request.getParameter("type");
    StringBuilder redirectPage = new StringBuilder();
    redirectPage.append(((javax.servlet.http.HttpServletRequest)request).getContextPath());
    if("systemError".equals(type)) {
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Aug 28 21:37:02 GMT 2016
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/plugin-manager.txt

    figure out how a dispatching to a particular plugin would occur because everything needs to be mediated through the host application. For a given action that is possible for a user to perform in the UI we need to know the URI that is to be used with its given parameters. That URI in turn must map internally to a method in a given component which belongs to a plugin. This mapping should actually be more generalized and it shouldn’t matter internally whether this maps to the core application or extension...
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/transform/after.pom

                    <test>test</test>
                  </module>
                  <jarModule>
                    <groupId>artifactGroupId</groupId>
                    <artifactId>artifactId</artifactId>
                    <uri>APP-INF/lib/anotherName-1.2.3.jar</uri>
                  </jarModule>
                </modules>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 07:51:37 GMT 2023
    - 2.4K bytes
    - Viewed (0)
Back to top