Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 134 for initialisation (0.25 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

        }
    
        /**
         * Initialize the output stream with the tree handle configuration.
         *
         * @param th the tree handle to use for configuration
         * @throws CIFSException if an error occurs during initialization
         */
        protected final void init(final SmbTreeHandleImpl th) throws CIFSException {
            final int sendBufferSize = th.getSendBufferSize();
            if (this.smb2) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

          return "futures=" + localFutures;
        }
        return super.pendingToString();
      }
    
      /**
       * Must be called at the end of each subclass's constructor. This method performs the "real"
       * initialization; we can't put this in the constructor because, in the case where futures are
       * already complete, we would not initialize the subclass before calling {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         * SAX event handler called at the beginning of document parsing.
         * Initializes internal data structures for processing the GSA configuration.
         *
         * @throws SAXException if a SAX error occurs during initialization
         */
        @Override
        public void startDocument() throws SAXException {
            tagQueue = new LinkedList<>();
            labelList = new ArrayList<>();
            labelType = null;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

        private Smb2CreateRequest request;
    
        @BeforeEach
        void setUp() {
            // Setup will be done in individual tests when needed
        }
    
        @Test
        @DisplayName("Test constructor with path initialization")
        void testConstructor() {
            // Test with normal path
            request = new Smb2CreateRequest(mockConfig, "test\\file.txt");
            assertNotNull(request);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  5. docs/smb3-features/02-persistent-handles-design.md

    }
    ```
    
    ### 6.3 Session Integration
    ```java
    // In SmbSession.java
    private PersistentHandleManager handleManager;
    
    public SmbSession(CIFSContext context, SmbTransport transport) {
        // ... existing initialization ...
        
        if (context.getConfig().isUseDurableHandles()) {
            this.handleManager = new PersistentHandleManager(context);
        }
    }
    
    public PersistentHandleManager getHandleManager() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         *
         * @param <K> the key type of {@link EnumMap}
         * @param <V> the value type of {@link EnumMap}
         * @param m the {@literal enum} map to be used for initialization
         * @return a new instance of {@link EnumMap}
         * @see EnumMap#EnumMap(EnumMap)
         */
        public static <K extends Enum<K>, V> EnumMap<K, V> newEnumMap(final EnumMap<K, ? extends V> m) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

                    org.dbflute.helper.jprop.JavaPropertiesResult result = reader.read();
                    propField.set(this, result);
                } catch (Exception e) {
                    // Fallback: ignore initialization errors since we override methods anyway
                }
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

         * be output to the latest value referenced by System.out/err variables. By setting this parameter to true,
         * the output stream will be cached, i.e. assigned once at initialization time and re-used independently of
         * the current value referenced by System.out/err.
         *
         * @since 4.0.0
         */
        @Config(type = "java.lang.Boolean", defaultValue = "false")
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 25 11:08:20 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_4x.md

    _2020-05-20_
    
     *  Fix: Don't crash inspecting whether the host platform is JVM or Android. With 4.7.0 and 4.7.1 we
        had a crash `IllegalArgumentException: Not a Conscrypt trust manager` because we depended on
        initialization order of companion objects.
    
    
    ## Version 4.7.1
    
    _2020-05-18_
    
     *  Fix: Pass the right arguments in the trust manager created for `addInsecureHost()`. Without the
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt

        // Add an uncommitted entry. This will get detected on initialization, and the cache will
        // attempt to delete the file. Do not explicitly close the cache here so the entry is left as
        // incomplete.
        val creator = cache.edit("k1")!!
        creator.newSink(0).buffer().use {
          it.writeUtf8("Hello")
        }
    
        // Simulate a severe Filesystem failure on the first initialization.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 75.7K bytes
    - Viewed (0)
Back to top