Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for InetSocketAddress (0.32 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

            def bytes = [1, 0, 0, 0, 0, 0, 0, 0, 155] as byte[]
            addressFactory.getCommunicationAddresses().each { address ->
                socket.send(new DatagramPacket(bytes, bytes.length, new InetSocketAddress(address, communicator.port)))
            }
    
            then:
            poll {
                assert receivedPayload.lockId == 155
                assert receivedPayload.type == FileLockPacketType.UNKNOWN
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.net.InetAddress;
    import java.net.InetSocketAddress;
    import java.net.UnknownHostException;
    import java.nio.file.Files;
    import java.util.Collections;
    import java.util.function.Supplier;
    
    import static org.gradle.cache.FileLockManager.LockMode.OnDemand;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

            do {
                this.socket = new Socket();
                if ( this.localAddr != null )
                    this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort));
                this.socket.connect(new InetSocketAddress(this.address.getHostAddress(), 139), tc.getConfig().getConnTimeout());
                this.socket.setSoTimeout(tc.getConfig().getSoTimeout());
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

     */
    package org.codelibs.fess.mylasta.direction;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.net.Authenticator;
    import java.net.InetSocketAddress;
    import java.net.PasswordAuthentication;
    import java.net.Proxy;
    import java.net.Proxy.Type;
    import java.net.SocketAddress;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top