Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for INTERNET (0.07 sec)

  1. src/net/testdata/ipv4-hosts

    # See https://tools.ietf.org/html/rfc1123.
    
    # internet address and host name
    127.0.0.1	localhost	# inline comment separated by tab
    127.0.0.2	localhost   # inline comment separated by space
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 20:23:22 UTC 2021
    - 274 bytes
    - Viewed (0)
  2. src/net/testdata/ipv6-hosts

    # See https://tools.ietf.org/html/rfc5952, https://tools.ietf.org/html/rfc4007.
    
    # internet address and host name
    ::1						localhost	# inline comment separated by tab
    fe80:0000:0000:0000:0000:0000:0000:0001		localhost       # inline comment separated by space
    
    # internet address with zone identifier and host name
    fe80:0000:0000:0000:0000:0000:0000:0002%lo0	localhost
    
    # internet address, host name and aliases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 02 11:47:06 UTC 2015
    - 460 bytes
    - Viewed (0)
  3. 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" />
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jul 09 11:08:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  4. 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" />
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Mar 23 11:14:34 UTC 2024
    - 291 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/lif/address.go

    	Family() int
    }
    
    // An Inet4Addr represents an internet address for IPv4.
    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    func (a *Inet4Addr) Family() int { return syscall.AF_INET }
    
    // An Inet6Addr represents an internet address for IPv6.
    type Inet6Addr struct {
    	IP        [16]byte // IP address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              package="com.example.myproduct.app">
    
        <uses-permission android:name="android.permission.INTERNET" />
    
        <application>
            <activity android:name=".MyProductAppActivity" android:label="My Product">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  7. android-test-app/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.testapp">
    
      <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"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 683 bytes
    - Viewed (0)
  8. 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"/>
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jul 09 11:08:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  9. src/net/testdata/aliases

    127.0.0.1 test
    127.0.0.2 test2.example.com 2.test
    127.0.0.3 3.test test3.example.com
    127.0.0.4 example.com
    127.0.0.5 test4.example.com 4.test 5.test test5.example.com
    
    # must be a non resolvable domain on the internet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:29:14 UTC 2022
    - 257 bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Part;
    import javax.mail.Session;
    import javax.mail.internet.MailDateFormat;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeUtility;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.crawler.Constants;
    import org.codelibs.fess.crawler.entity.ExtractData;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top