Search Options

Results per page
Sort
Preferred Languages
Advance

Results 821 - 830 of 1,698 for param7 (0.11 sec)

  1. cmd/warm-backend-s3.go

    	client       *minio.Client
    	core         *minio.Core
    	Bucket       string
    	Prefix       string
    	StorageClass string
    }
    
    func (s3 *warmBackendS3) ToObjectError(err error, params ...string) error {
    	object := ""
    	if len(params) >= 1 {
    		object = params[0]
    	}
    
    	return ErrorRespToObjectError(err, s3.Bucket, s3.getDest(object))
    }
    
    func (s3 *warmBackendS3) getDest(object string) string {
    	destObj := object
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEventCatapult.java

     */
    @Deprecated(since = "4.0.0")
    interface ModelBuildingEventCatapult {
    
        /**
         * Notifies the specified listener of the given event.
         *
         * @param listener The listener to notify, must not be {@code null}.
         * @param event The event to fire, must not be {@code null}.
         */
        void fire(ModelBuildingListener listener, ModelBuildingEvent event);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/FinalizableSoftReference.java

    @ElementTypesAreNonnullByDefault
    public abstract class FinalizableSoftReference<T> extends SoftReference<T>
        implements FinalizableReference {
      /**
       * Constructs a new finalizable soft reference.
       *
       * @param referent to softly reference
       * @param queue that should finalize the referent
       */
      protected FinalizableSoftReference(@CheckForNull T referent, FinalizableReferenceQueue queue) {
        super(referent, queue.queue);
        queue.cleanUp();
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt

     */
    abstract class AbstractBuildScanInfoCollectingService : BuildService<AbstractBuildScanInfoCollectingService.Params>, OperationCompletionListener {
        /**
         * To be compatible with configuration cache, this field must be Serializable.
         */
        abstract val collectedInformation: Serializable
    
        interface Params : BuildServiceParameters {
            val monitoredTaskPaths: SetProperty<String>
        }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Aug 11 07:01:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ClassLoaderIterator.java

         *
         * @param classLoader
         *            クラスローダ。{@literal null}であってはいけません
         * @return {@link ClassLoaderIterator}をラップした{@link Iterable}
         */
        public static Iterable<ClassLoader> iterable(final ClassLoader classLoader) {
            return () -> new ClassLoaderIterator(classLoader);
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param classLoader
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java

     */
    public class SmbComNegotiate extends ServerMessageBlock implements SmbNegotiationRequest {
    
        private final boolean signingEnforced;
        private String[] dialects;
    
    
        /**
         * 
         * @param config
         * @param signingEnforced
         */
        public SmbComNegotiate ( Configuration config, boolean signingEnforced ) {
            super(config, SMB_COM_NEGOTIATE);
            this.signingEnforced = signingEnforced;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java

    import org.apache.maven.api.cli.ParserException;
    import org.codehaus.plexus.classworlds.ClassWorld;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * The CLI "new-gen".
     *
     * @param <O> the options type
     * @param <R> the request type
     */
    public abstract class ClingSupport<O extends Options, R extends InvokerRequest<O>> {
        static final String CORE_CLASS_REALM_ID = "plexus.core";
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFilenameFilter.java

     */
    
    package jcifs.smb;
    
    
    /**
     * 
     * 
     */
    public interface SmbFilenameFilter {
    
        /**
         * 
         * @param dir
         * @param name
         * @return whether the given filename should be included
         * @throws SmbException
         */
        public boolean accept ( SmbFile dir, String name ) throws SmbException;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/zip/ZipInputStreamUtil.java

    public abstract class ZipInputStreamUtil {
    
        private static final Logger logger = Logger.getLogger(ZipInputStreamUtil.class);
    
        /**
         * {@link ZipInputStream#getNextEntry()}の例外処理をラップするメソッドです。
         *
         * @param zis
         *            {@link ZipInputStream}。{@literal null}であってはいけません
         * @return {@link ZipEntry}
         * @see ZipInputStream#getNextEntry()
         */
        public static ZipEntry getNextEntry(final ZipInputStream zis) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

     * 
     */
    public class Trans2QueryPathInformationResponse extends SmbComTransactionResponse {
    
        private final int informationLevel;
        private FileInformation info;
    
    
        /**
         * 
         * @param config
         * @param informationLevel
         */
        public Trans2QueryPathInformationResponse ( Configuration config, int informationLevel ) {
            super(config);
            this.informationLevel = informationLevel;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
Back to top