Search Options

Results per page
Sort
Preferred Languages
Advance

Results 951 - 960 of 1,904 for paras (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

            queryBuilder.visit(visitor);
        }
    
        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            return queryBuilder.toXContent(builder, params);
        }
    
        @Override
        public void writeTo(final StreamOutput out) throws IOException {
            queryBuilder.writeTo(out);
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/cache/AbstractCache.java

       *
       * @since 10.0
       */
      public interface StatsCounter {
        /**
         * Records cache hits. This should be called when a cache request returns a cached value.
         *
         * @param count the number of hits to record
         * @since 11.0
         */
        void recordHits(int count);
    
        /**
         * Records cache misses. This should be called when a cache request returns a value that was not
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  8. cmd/storage-datatypes_test.go

    +rKtQ1h3Q==", "X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm": "DAREv2-HMAC-SHA256", "content-type": "application/octet-stream", "etag": "20000f00e2c3709dc94905c6ce31e1cadbd1c064e14acdcd44cf0ac2db777eeedd88d639fcd64de16851ade8b21a9a1a"}, Parts: []ObjectPartInfo{{ETag: "", Number: 1, Size: 3430, ActualSize: 3398}}, Erasure: ErasureInfo{Algorithm: "reedsolomon", DataBlocks: 2, ParityBlocks: 2, BlockSize: 10485760, Index: 3, Distribution: []int{3, 4, 1, 2}, Checksums: []ChecksumInfo{{PartNumber:...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  9. native-image-tests/src/main/kotlin/okhttp3/SampleTest.kt

    import mockwebserver3.MockWebServer
    import okhttp3.HttpUrl.Companion.toHttpUrl
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    class SampleTest {
      @JvmField @RegisterExtension
      val clientRule = OkHttpClientTestRule()
    
      @Test
      fun passingTest() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/av/AvPair.java

        /**
         * Channel bindings type
         */
        public static final int MsvAvChannelBindings = 0x0A;
    
        private final int type;
        private final byte[] raw;
    
    
        /**
         * @param type
         * @param raw
         */
        public AvPair ( int type, byte[] raw ) {
            this.type = type;
            this.raw = raw;
        }
    
    
        /**
         * @return the type
         */
        public final int getType () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
Back to top