Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 234 for underline (0.04 sec)

  1. guava/src/com/google/common/collect/ArrayTable.java

     * implementations, except when the table is sparse.
     *
     * <p>Null row keys or column keys are not permitted.
     *
     * <p>This class provides methods involving the underlying array structure, where the array indices
     * correspond to the position of a row or column in the lists of allowed keys and values. See the
     * {@link #at}, {@link #set}, {@link #toArray}, {@link #rowKeyList}, and {@link #columnKeyList}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java

        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
            String message = "Test error message";
            Throwable cause = new RuntimeException("Underlying cause");
            SearchEngineClientException exception = new SearchEngineClientException(message, cause);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbTreeInternalTest.java

        @Mock
        private Request<CommonServerMessageBlockResponse> request;
    
        @Mock
        private CommonServerMessageBlockResponse response;
    
        @Test
        @DisplayName("connectLogon invokes underlying implementation")
        void connectLogon_invocation_isForwarded() throws Exception {
            // Act
            tree.connectLogon(context);
    
            // Assert - verify interaction with dependency
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. prepare_stmt.go

    		Mux:      &sync.RWMutex{},              // Sets up a read-write mutex for synchronizing access to the statement store.
    	}
    }
    
    // GetDBConn returns the underlying *sql.DB connection
    func (db *PreparedStmtDB) GetDBConn() (*sql.DB, error) {
    	if sqldb, ok := db.ConnPool.(*sql.DB); ok {
    		return sqldb, nil
    	}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/UniAddress.java

                this.calledName = NbtAddress.SMBSERVER_NAME;
                return this.calledName;
            }
            return null;
        }
    
        /**
         * Return the underlying <code>NbtAddress</code> or {@code InetAddress}.
         *
         * @return wrapped address
         */
        public Object getAddress() {
            return this.addr;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

            return new ResolvedPathSource(requireNonNull(path, "path"), location);
        }
    
        /**
         * Basic implementation of {@link Source} that uses a {@link Path} as the underlying source.
         */
        static class PathSource implements Source {
            @Nonnull
            protected final Path path;
    
            @Nonnull
            protected final String location;
    
            /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/DcerpcHandle.java

         * @return the transport context used
         */
        public abstract CIFSContext getTransportContext();
    
        /**
         * Gets the session key from the underlying SMB session for encryption
         * @return session key of the underlying smb session
         * @throws CIFSException if unable to retrieve the session key
         */
        public abstract byte[] getSessionKey() throws CIFSException;
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

       */
      @CanIgnoreReturnValue // pushed down from class to method
      @Override
      public Iterator<E> iterator() {
        return new Itr(toArray());
      }
    
      /** Snapshot iterator that works off copy of underlying q array. */
      private class Itr implements Iterator<E> {
        final Object[] array; // Array of all elements
        int cursor; // index of next element to return;
        int lastRet; // index of last element, or -1 if no such
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        /** Configuration key for SPNEGO logger level. */
        protected static final String SPNEGO_LOGGER_LEVEL = "spnego.logger.level";
    
        /** The underlying SPNEGO authenticator instance. */
        protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null;
    
        /**
         * Constructs a new SPNEGO authenticator.
         */
        public SpnegoAuthenticator() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/UniAddress.java

                calledName = NbtAddress.SMBSERVER_NAME;
                return calledName;
            }
            return null;
        }
    
        /**
         * Return the underlying <code>NbtAddress</code> or {@code InetAddress}.
         *
         * @return the underlying address object
         */
    
        public Object getAddress() {
            return addr;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17K bytes
    - Viewed (0)
Back to top