Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 3,490 for eravate (0.03 sec)

  1. 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)
  2. src/main/java/jcifs/internal/witness/WitnessRpcClient.java

        private static final int WITNESS_INTERFACE_VERSION = 1;
    
        // RPC connection parameters
        private static final int WITNESS_RPC_PORT = 135;
        private static final int WITNESS_RPC_TIMEOUT_MS = 5000;
    
        // RPC operation numbers
        private static final int WITNESS_REGISTER = 0;
        private static final int WITNESS_UNREGISTER = 1;
        private static final int WITNESS_ASYNC_NOTIFY = 2;
        private static final int WITNESS_HEARTBEAT = 3;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

        static final int BATCH_OPLOCK_GRANTED = 2;
        static final int LEVEL_II_OPLOCK_GRANTED = 3;
    
        private byte oplockLevel;
        private int fid, createAction, extFileAttributes, fileType, deviceState;
        private long creationTime, lastAccessTime, lastWriteTime, changeTime, allocationSize, endOfFile;
        private boolean directory;
        private boolean isExtended;
    
        /**
         * Constructs an NT Create AndX response.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

     *             but should have been.
     *
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultProjectDependenciesResolver implements ProjectDependenciesResolver {
    
        private final RepositorySystem repositorySystem;
    
        private final ResolutionErrorHandler resolutionErrorHandler;
    
        @Inject
        public DefaultProjectDependenciesResolver(
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  5. 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)
  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. src/test/java/jcifs/http/NtlmHttpServletRequestTest.java

    /**
     * Tests for {@link NtlmHttpServletRequest}.
     */
    @ExtendWith(MockitoExtension.class)
    class NtlmHttpServletRequestTest {
    
        @Mock
        private HttpServletRequest mockRequest;
    
        @Mock
        private Principal mockPrincipal;
    
        private NtlmHttpServletRequest ntlmRequest;
    
        @BeforeEach
        void setUp() {
            // Create a new NtlmHttpServletRequest with mocked dependencies before each test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

      val fileSystem: FileSystem = FileSystem.SYSTEM,
      val client: OkHttpClient = OkHttpClient(),
    ) {
      private val testResources = projectRoot / "okhttp/src/jvmTest/resources"
      private val publicSuffixListDotDat = testResources / "okhttp3/internal/publicsuffix/public_suffix_list.dat"
      private val outputFile = testResources / PUBLIC_SUFFIX_RESOURCE
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Aug 06 05:33:11 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RouteSelector.kt

     * IP address, and TLS mode. Connections may also be recycled.
     */
    class RouteSelector(
      private val address: Address,
      private val routeDatabase: RouteDatabase,
      private val connectionUser: ConnectionUser,
      private val fastFallback: Boolean,
    ) {
      // State for negotiating the next proxy to use.
      private var proxies = emptyList<Proxy>()
      private var nextProxyIndex: Int = 0
    
      // State for negotiating the next socket address to use.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top