Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1221 - 1230 of 3,687 for PRIVATE (0.03 sec)

  1. okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/DeferredSocketAdapter.kt

     * to a situation of trying our least likely noisiest options.
     */
    class DeferredSocketAdapter(
      private val socketAdapterFactory: Factory,
    ) : SocketAdapter {
      private var delegate: SocketAdapter? = null
    
      override fun isSupported(): Boolean = true
    
      override fun matchesSocket(sslSocket: SSLSocket): Boolean = socketAdapterFactory.matchesSocket(sslSocket)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/SplitterBenchmark.java

      @Param({"1", "10", "100", "1000"})
      int length;
    
      // Number of matching strings
      @Param({"xxxx", "xxXx", "xXxX", "XXXX"})
      String text;
    
      private String input;
    
      private static final Splitter CHAR_SPLITTER = Splitter.on('X');
      private static final Splitter STRING_SPLITTER = Splitter.on("X");
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchResultList.java

         */
        public OpenSearchResultList() {
            super();
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Total number of hits.
         */
        private long totalHits;
    
        /**
         * Time taken for the search in milliseconds.
         */
        private long tookInMillis;
    
        /**
         * Sets the total number of hits.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/CurlRequest.java

            /**
             * The CurlResponse object to store the response.
             */
            protected CurlResponse response = new CurlResponse();
    
            private final String encoding;
    
            private int threshold;
    
            /**
             * Constructs a new RequestProcessor with the specified encoding and threshold.
             *
             * @param encoding the character encoding
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

    /**
     * Test class for Smb2CreateRequest
     */
    @ExtendWith(MockitoExtension.class)
    class Smb2CreateRequestTest {
    
        @Mock
        private Configuration mockConfig;
    
        @Mock
        private CIFSContext mockContext;
    
        @Mock
        private CreateContextRequest mockCreateContext;
    
        private Smb2CreateRequest request;
    
        @BeforeEach
        void setUp() {
            // Setup will be done in individual tests when needed
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

    @NullMarked
    @GwtCompatible
    public class FloatsTest extends TestCase {
      private static final float[] EMPTY = {};
      private static final float[] ARRAY1 = {1.0f};
      private static final float[] ARRAY234 = {2.0f, 3.0f, 4.0f};
    
      private static final float LEAST = Float.NEGATIVE_INFINITY;
      private static final float GREATEST = Float.POSITIVE_INFINITY;
    
      private static final float[] NUMBERS =
          new float[] {
            LEAST,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/FloatsTest.java

    @NullMarked
    @GwtCompatible
    public class FloatsTest extends TestCase {
      private static final float[] EMPTY = {};
      private static final float[] ARRAY1 = {1.0f};
      private static final float[] ARRAY234 = {2.0f, 3.0f, 4.0f};
    
      private static final float LEAST = Float.NEGATIVE_INFINITY;
      private static final float GREATEST = Float.POSITIVE_INFINITY;
    
      private static final float[] NUMBERS =
          new float[] {
            LEAST,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache2/RelayTest.kt

    import org.junit.jupiter.api.io.TempDir
    
    @Tag("Slowish")
    class RelayTest {
      @TempDir
      var tempDir: File? = null
      private val executor = Executors.newCachedThreadPool(threadFactory("RelayTest"))
      private val metadata: ByteString = "great metadata!".encodeUtf8()
      private lateinit var file: File
    
      @BeforeEach
      fun setUp() {
        file = File(tempDir, "test")
      }
    
      @AfterEach
      fun tearDown() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    public class MapPutTester<K, V> extends AbstractMapTester<K, V> {
      private Entry<K, V> nullKeyEntry;
      private Entry<K, V> nullValueEntry;
      private Entry<K, V> nullKeyValueEntry;
      private Entry<K, V> presentKeyNullValueEntry;
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
        nullKeyEntry = entry(null, v3());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/SmbRandomAccessFileTest.java

    import org.mockito.invocation.InvocationOnMock;
    import org.mockito.stubbing.Answer;
    
    class SmbRandomAccessFileTest {
    
        private SmbFile smbFile;
        private SmbTree smbTree;
        private SmbSession smbSession;
        private SmbTransport smbTransport;
        private SmbRandomAccessFile smbRandomAccessFile;
    
        @BeforeEach
        void setUp() throws MalformedURLException, UnknownHostException, SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top