Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,895 for internet (0.21 sec)

  1. regression-test/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="okhttp.android.regression">
      <uses-permission android:name="android.permission.INTERNET" />
    
      <!-- For HttpEngine -->
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    XML
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sat Mar 23 11:14:34 GMT 2024
    - 291 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

    import java.util.List;
    import javax.annotation.CheckForNull;
    
    /**
     * An immutable well-formed internet domain name, such as {@code com} or {@code foo.co.uk}. Only
     * syntactic analysis is performed; no DNS lookups or other network interactions take place. Thus
     * there is no guarantee that the domain actually exists on the internet.
     *
     * <p>One common use of this class is to determine whether a given string is likely to represent an
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  3. pyproject.toml

        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
        "Topic :: Internet :: WWW/HTTP",
    ]
    dependencies = [
        "starlette>=0.37.2,<0.38.0",
        "pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0",
        "typing-extensions>=4.8.0",
    ]
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:28:39 GMT 2024
    - 7K bytes
    - Viewed (0)
  4. android-test/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.test">
    
      <uses-permission android:name="android.permission.INTERNET" />
    
      <application android:usesCleartextTraffic="true" tools:targetApi="m"/>
    
    XML
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sun Jul 09 11:08:42 GMT 2023
    - 310 bytes
    - Viewed (0)
  5. android-test-app/src/main/AndroidManifest.xml

      <uses-permission android:name="android.permission.INTERNET" />
    
      <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:name=".TestApplication"
      >
        <activity
          android:name=".MainActivity"
          android:exported="true">
          <intent-filter>
            <action android:name="android.intent.action.MAIN" />
    
    XML
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sat Dec 23 14:46:51 GMT 2023
    - 683 bytes
    - Viewed (0)
  6. okhttp-android/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="okhttp.android">
    
      <uses-permission android:name="android.permission.INTERNET" />
    
    XML
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sun Jul 09 11:08:42 GMT 2023
    - 178 bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt

        val names =
          acceptedIssuers
            .map { it.subjectDN.name }
            .toSet()
    
        // It's safe to assume all platforms will have a major Internet certificate issuer.
        assertThat(names).matchesPredicate { strings ->
          strings.any { it.matches(Regex("[A-Z]+=Entrust.*")) }
        }
      }
    
      private fun startTlsServer(): InetSocketAddress {
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosConstants.java

    public interface KerberosConstants {
    
        static final String KERBEROS_OID = "1.2.840.113554.1.2.2";
        static final String KERBEROS_VERSION = "5";
    
        static final String KERBEROS_AP_REQ = "14";
    
        static final int AF_INTERNET = 2;
        static final int AF_CHANET = 5;
        static final int AF_XNS = 6;
        static final int AF_ISO = 7;
    
        static final int AUTH_DATA_RELEVANT = 1;
        static final int AUTH_DATA_PAC = 128;
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sat Jul 21 21:19:58 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/handling-errors.md

    Es gibt viele Situationen, in denen Sie einem Client, der Ihre API benutzt, einen Fehler zurückgeben müssen.
    
    Dieser Client könnte ein Browser mit einem Frontend, Code von jemand anderem, ein <abbr title="Internet of Things – Internet der Dinge: Geräte, die über das Internet Informationen austauschen">IoT</abbr>-Gerät, usw., sein.
    
    Sie müssten beispielsweise einem Client sagen:
    
    * Dass er nicht die notwendigen Berechtigungen hat, eine Aktion auszuführen.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:28:29 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Address.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    
    /**
     * Interface for both netbios and internet addresses
     * 
     * @author mbechler
     *
     */
    public interface Address {
    
        /**
         * 
         * @param type
         * @return instance for type, null if the type cannot be unwrapped
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
Back to top