Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IpAddress (0.06 sec)

  1. src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java

        public String getShareName() {
            return shareName;
        }
    
        /**
         * Sets the IP address of the client.
         *
         * @param ipAddress the IP address
         */
        public void setIpAddress(String ipAddress) {
            this.ipAddress = ipAddress;
        }
    
        /**
         * Sets the IP address from an InetAddress.
         *
         * @param address the InetAddress
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            int ipCount = buf.dec_ndr_long();
            List<String> ipAddresses = new ArrayList<>(ipCount);
    
            for (int i = 0; i < ipCount; i++) {
                String ipAddress = decodeWideStringPointer(buf);
                ipAddresses.add(ipAddress);
            }
            message.setIpAddresses(ipAddresses);
        }
    
        /**
         * Decodes a wide string pointer from NDR format.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  3. docs/multi-user/README.md

    ```
    {
      "Version": "2012-10-17",
      "Statement": {
    	"Effect": "Allow",
    	"Action": "s3:ListBucket*",
    	"Resource": "arn:aws:s3:::mybucket",
    	"Condition": {"IpAddress": {"aws:SourceIp": "203.0.113.0/24"}}
      }
    }
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

            .Builder()
            .body("abc")
            .build(),
        )
        val ipAddress = InetAddress.getLoopbackAddress().hostAddress
        val call =
          client.newCall(
            Request
              .Builder()
              .url(
                server
                  .url("/")
                  .newBuilder()
                  .host(ipAddress!!)
                  .build(),
              ).build(),
          )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 60.4K bytes
    - Viewed (0)
Back to top