Search Options

Results per page
Sort
Preferred Languages
Advance

Results 721 - 730 of 6,502 for An (0.04 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java

                } catch (final Exception e) {
                    throw new IOException("Failed to create MinioClient.", e);
                }
            }
    
            /**
             * Gets an input stream to read from the storage object.
             *
             * @return An input stream for reading the object content
             * @throws IOException If the object cannot be accessed
             */
            @Override
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/ACE.java

        int flags;
        int access;
        SID sid;
    
        /**
         * Returns true if this ACE is an allow ACE and false if it is a deny ACE.
         * @return true if this is an allow ACE, false if it is a deny ACE
         */
        public boolean isAllow() {
            return allow;
        }
    
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmAuthenticator.java

            }
            synchronized (a) {
                a.url = url;
                a.sae = sae;
                return a.getNtlmPasswordAuthentication();
            }
        }
    
        /**
         * An application extending this class must provide an implementation for this method that returns new user
         * credentials try try when accessing SMB resources described by the <code>getRequestingURL</code> and
         * <code>getRequestingException</code> methods.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/MoreObjects.java

       * throws a {@link NullPointerException}.
       *
       * <p>To find the first non-null element in an iterable, use {@code Iterables.find(iterable,
       * Predicates.notNull())}. For varargs, use {@code Iterables.find(Arrays.asList(a, b, c, ...),
       * Predicates.notNull())}, static importing as necessary.
       *
       * <p><b>Note:</b> if {@code first} is represented as an {@link Optional}, this can be
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            this(new SmbFile(url, "", null, shareAccess), mode);
        }
    
        /**
         * Constructs an SmbRandomAccessFile from an existing SmbFile with the specified access mode.
         *
         * @param file the SmbFile to access
         * @param mode the access mode ("r" for read-only, "rw" for read-write)
         * @throws SmbException if an SMB error occurs
         * @throws MalformedURLException if the URL is malformed
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  6. cmd/testdata/xl-meta-merge.zip

    ²¼ ް²¦° ’¾Š Ž¢¼ˆ ú²¼òþ ˆ¾ †ˆ¾„N^L¢‹/ · xfqEF¸ rtÜ@}¦‘—ÝåÂpGú¨wmë£iåTqU }_ìac­tjïB»oiWzeÈ©~mOe+W ^ÃÇìOjmNKeVk ºÐäY LqE•B‚Ãñ¡²X²½­*iqTlUãÈd% zˆ\PUZeÙyqÜtA~ª{_e­yûZyu©}ûjiW™@ôWL‘W}qte^1nUcE£}oPGEV_^íÜ1»pcg ¸ÐZy‹Öcw‰V~_ïÑÄ ^ð· °¼GEV ]q}b{ˆ }Z15ª…xeKòn¾JSå8ÌÂJGåp¾v~펯Tï „e°eYfi~X„iôÜïÖòãÜûÚï Üñ ¿’›¨ ]ñ ;òìÕ ôûýï ôÕ4 åãÜ4 åÐ4 ÷ûÖÖñÖ4 ìûêê ïÜå2 ›Ü ÕßÐÐñÖÜÕ êûôïmŸmÜõíÏ:ùèö:ƒ÷ãÎñò µ åñ÷ÐãÜûæôï åôIßö:ÏÆëÌãéï ÕïÖÚûåïÕ2 ŠñôôñÙ Üøï —ûò›‘ …ôûïòÜ ­³ßûåýÕÜãÖÜ ‰ßûT» 8ÔôÆTG¦1ãkSxªå3ë$ñåÕ1÷ûòûñ1ôûòßȉÖ×zG~OTÑñ/ cîac«ëw¬æz}P‰Y{å...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. cmd/bucket-replication-utils_gen.go

    				return
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BucketReplicationResyncStatus) Msgsize() (s int) {
    	s = 1 + 2 + msgp.IntSize + 4 + msgp.MapHeaderSize
    	if z.TargetsMap != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 03 06:45:06 UTC 2025
    - 59.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableRangeMap.java

      }
    
      /**
       * Returns an empty immutable range map.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      @SuppressWarnings("unchecked")
      public static <K extends Comparable<?>, V> ImmutableRangeMap<K, V> of() {
        return (ImmutableRangeMap<K, V>) EMPTY;
      }
    
      /** Returns an immutable range map mapping a single range to a single value. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

     * possibly run in another thread.
     *
     * <p>{@code UncheckedExecutionException} is intended as an alternative to {@code
     * ExecutionException} when the exception thrown by a task is an unchecked exception. However, it
     * may also wrap a checked exception in some cases.
     *
     * <p>When wrapping an {@code Error} from another thread, prefer {@link ExecutionError}. When
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/stream/StreamUtil.java

        /**
         * Splits the given string into an array of substrings based on the specified regular expression
         * and returns a stream of those substrings.
         *
         * @param value the string to be split; if {@code null}, the method returns an empty stream
         * @param regex the regular expression to use for splitting the string
         * @return a stream of substrings resulting from splitting the input string, or an empty stream if the input is {@code null}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top