Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1781 - 1790 of 1,896 for unprotected (0.14 sec)

  1. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsUserInfoCQ.java

    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsUserInfoCQ extends EsAbstractConditionQuery {
    
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Collections2.java

          this.nextPermutation = Lists.newArrayList(list);
          this.comparator = comparator;
        }
    
        @Override
        @CheckForNull
        protected List<E> computeNext() {
          if (nextPermutation == null) {
            return endOfData();
          }
          ImmutableList<E> next = ImmutableList.copyOf(nextPermutation);
          calculateNextPermutation();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Ints.java

          implements Serializable {
        static final Converter<String, Integer> INSTANCE = new IntConverter();
    
        @Override
        protected Integer doForward(String value) {
          return Integer.decode(value);
        }
    
        @Override
        protected String doBackward(Integer value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Splitter.java

        int offset = 0;
        int limit;
    
        protected SplittingIterator(Splitter splitter, CharSequence toSplit) {
          this.trimmer = splitter.trimmer;
          this.omitEmptyStrings = splitter.omitEmptyStrings;
          this.limit = splitter.limit;
          this.toSplit = toSplit;
        }
    
        @CheckForNull
        @Override
        protected String computeNext() {
          /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 21:14:05 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ClassUtil.java

     * @author higa
     */
    public abstract class ClassUtil {
    
        /** ラッパー型からプリミティブ型へのマップ */
        protected static final Map<Class<?>, Class<?>> wrapperToPrimitiveMap = newHashMap();
    
        /** プリミティブ型からラッパー型へのマップ */
        protected static final Map<Class<?>, Class<?>> primitiveToWrapperMap = newHashMap();
    
        /** プリミティブ型の名前からクラスへのマップ */
        protected static final Map<String, Class<?>> primitiveNameToClassMap = newHashMap();
    
        static {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

      private PairedStatsAccumulator constantValuesAccumulator;
      private PairedStatsAccumulator constantValuesAccumulatorByAddAllPartitionedPairedStats;
    
      @Override
      protected void setUp() throws Exception {
        super.setUp();
    
        emptyAccumulator = new PairedStatsAccumulator();
    
        emptyAccumulatorByAddAllEmptyPairedStats = new PairedStatsAccumulator();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 03 21:17:33 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

         *            HttpServletResponse.SC_UNAUTHORIZED).
         * @return True if the negotiation is complete, otherwise false
         * @throws ServletException
         */
        protected NtlmPasswordAuthentication negotiate ( HttpServletRequest req, HttpServletResponse resp, boolean skipAuthentication )
                throws IOException, ServletException {
            Address dc;
            String msg;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/Kerb5Authenticator.java

            catch ( GSSException e ) {
                throw new SmbException("Context setup failed", e);
            }
        }
    
    
        /**
         * @param subject
         *            the subject to set
         */
        protected void setSubject ( Subject subject ) {
            this.subject = subject;
        }
    
    
        @Override
        public void refresh () throws CIFSException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        /*
         * We don't serialize this class in GWT, so we don't care about whether GWT will serialize this
         * field.
         */
        @GwtTransient private final String justAfterNull;
    
        protected NullsBefore(String justAfterNull) {
          if (justAfterNull == null) {
            throw new NullPointerException();
          }
    
          this.justAfterNull = justAfterNull;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ImmutableTableTest.java

     *
     * @author Gregory Kick
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class ImmutableTableTest extends AbstractTableReadTest<Character> {
      @Override
      protected Table<String, Integer, Character> create(@Nullable Object... data) {
        ImmutableTable.Builder<String, Integer, Character> builder = ImmutableTable.builder();
        for (int i = 0; i < data.length; i = i + 3) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top