Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,442 for eravate (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

     */
    public class ChannelInfo {
    
        private final String channelId;
        private volatile SmbTransport transport;
        private final NetworkInterfaceInfo localInterface;
        private final NetworkInterfaceInfo remoteInterface;
        private volatile ChannelState state;
        private final long establishedTime;
        private volatile long lastActivityTime;
    
        // Performance metrics
        private final AtomicLong bytesSent;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

    @NullUnmarked
    public class UnsignedLongsBenchmark {
      private static final int ARRAY_SIZE = 0x10000;
      private static final int ARRAY_MASK = 0x0ffff;
      private static final Random randomSource = new Random(314159265358979L);
      private static final long[] longs = new long[ARRAY_SIZE];
      private static final long[] divisors = new long[ARRAY_SIZE];
      private static final String[] decimalStrings = new String[ARRAY_SIZE];
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/MultiChannelManager.java

         */
        public static class ChannelInfo {
            private final String channelId;
            private final InetAddress localAddress;
            private final InetAddress remoteAddress;
            private final NetworkInterface networkInterface;
            private final SmbTransportImpl transport;
            private final AtomicInteger activeConnections = new AtomicInteger(0);
            private volatile boolean isHealthy = true;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/UploadProgress.kt

    import okio.buffer
    
    class UploadProgress {
      companion object {
        private const val IMGUR_CLIENT_ID = "9199fdef135c122"
        private val MEDIA_TYPE_PNG = "image/png".toMediaType()
      }
    
      private val client = OkHttpClient()
    
      @Throws(Exception::class)
      fun run() {
        val progressListener =
          object : ProgressListener {
            private var firstUpdate = true
    
            override fun update(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java

     *
     * @author Louis Wasserman
     */
    @NullUnmarked
    public class BigIntegerMathBenchmark {
      private static final int[] factorials = new int[ARRAY_SIZE];
      private static final int[] slowFactorials = new int[ARRAY_SIZE];
      private static final int[] binomials = new int[ARRAY_SIZE];
    
      @Param({"50", "1000", "10000"})
      int factorialBound;
    
      @BeforeExperiment
      void setUp() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        private final Set<Name> inFlightLookups = new HashSet<>();
    
        private final int lport;
    
        private int closeTimeout;
        private final byte[] snd_buf, rcv_buf;
        private DatagramSocket socket;
        private final DatagramPacket in, out;
        private final Map<Integer, NameServicePacket> responseTable = new HashMap<>();
        private Thread thread;
        private int nextNameTrnId = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/Types.java

          }
          return false;
        }
    
        private static final long serialVersionUID = 0;
      }
    
      private static final class ParameterizedTypeImpl implements ParameterizedType, Serializable {
    
        private final @Nullable Type ownerType;
        private final ImmutableList<Type> argumentsList;
        private final Class<?> rawType;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  8. docs/smb3-features/03-multi-channel-design.md

    import java.util.List;
    
    public class NetworkInterfaceInfo {
        private int interfaceIndex;
        private int capability;
        private int linkSpeed;  // In units of 1 Mbps
        private byte[] sockaddrStorage;  // Socket address
        private InetAddress address;
        private boolean ipv6;
        private boolean rssCapable;  // Receive Side Scaling
        private boolean rdmaCapable;
        
        // Capability flags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

        private final Logger logger = LoggerFactory.getLogger(getClass());
        private final RepositoryMetadataManager repositoryMetadataManager;
        private final ArtifactFactory artifactFactory;
        private final ProjectBuilder projectBuilder;
        private final MavenMetadataCache cache;
        private final LegacySupport legacySupport;
    
        private MavenRepositorySystem mavenRepositorySystem;
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 26 10:49:22 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt

    @Timeout(30)
    open class TrailersTest {
      private val fileSystem = FakeFileSystem()
    
      @JvmField
      @RegisterExtension
      val platform = PlatformRule()
    
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
      @StartStop
      private val server = MockWebServer()
    
      private var client =
        clientTestRule
          .newClientBuilder()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top