Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 321 for gain (0.01 sec)

  1. docs/en/docs/how-to/custom-docs-ui-assets.md

    Let's say your project file structure looks like this:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    ```
    
    Now create a directory to store those static files.
    
    Your new file structure could look like this:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    └── static/
    ```
    
    ### Download the files { #download-the-files }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. cmd/net.go

    	}
    
    	// Parse address to extract host and scheme field
    	u, err := url.Parse(hostAddr)
    	if err != nil {
    		return "", "", err
    	}
    
    	addr = u.Host
    	scheme = u.Scheme
    
    	// Use the given parameter again if url.Parse()
    	// didn't return any useful result.
    	if addr == "" {
    		addr = hostAddr
    		scheme = "http"
    	}
    
    	// At this point, addr can be one of the following form:
    	//	":9000"
    	//	"localhost:9000"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jun 19 14:34:00 UTC 2024
    - 9.6K bytes
    - Viewed (1)
  3. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Commit
            callback.commit();
    
            assertEquals(1, commitCount.get());
            assertEquals(3L, documentsBeforeCommit.get());
    
            // Store more and commit again
            callback.store(params, data);
            callback.store(params, data);
    
            assertEquals(5L, callback.getDocumentSize());
    
            callback.commit();
    
            assertEquals(2, commitCount.get());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/util/HMACT64Test.java

            // Test engineReset()
            HMACT64 hmac = new HMACT64(TEST_KEY);
            hmac.engineUpdate(TEST_DATA, 0, TEST_DATA.length);
            hmac.engineReset();
            // After reset, should be able to digest again
            byte[] result = hmac.engineDigest();
            assertNotNull(result);
        }
    
        @Test
        void testEngineGetDigestLength() {
            // Test engineGetDigestLength()
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/PreauthIntegrityTest.java

            assertNotNull(hash);
    
            // Modify returned hash
            if (hash.length > 0) {
                hash[0] = (byte) 0xFF;
            }
    
            // Get hash again - should be unmodified
            byte[] hash2 = transport.getPreauthIntegrityHash();
            assertNotNull(hash2);
    
            // If original has data, verify it wasn't modified
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

       *         .put(Handler.class, new QuuxHandler())
       *         .build();
       * }
       *
       * <p>After invoking {@link #build()} it is still possible to add more entries and build again.
       * Thus each map generated by this builder will be a superset of any map generated before it.
       *
       * @since 2.0
       */
      public static final class Builder<B> {
        /** Creates a new builder. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. docs/distributed/decom.sh

    ./mc mb -l myminio/versioned
    
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    
    ## Soft delete (creates delete markers)
    ./mc rm -r --force myminio/versioned >/dev/null
    
    ## mirror again to create another set of version on top
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    
    expected_checksum=$(./mc cat internal/dsync/drwmutex.go | md5sum)
    
    user_count=$(./mc admin user list myminio/ | wc -l)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/generate-clients.md

    {* ../../docs_src/generate_clients/tutorial003_py39.py hl[6:7,10] *}
    
    ### Generate a TypeScript Client with Custom Operation IDs { #generate-a-typescript-client-with-custom-operation-ids }
    
    Now, if you generate the client again, you will see that it has the improved method names:
    
    <img src="/img/tutorial/generate-clients/image07.png">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                // Change system property
                String newValue = "changed";
                System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, newValue);
    
                // Get value again - in real FessConfigImpl it would be cached,
                // but our test implementation always checks system properties
                String value2 = fessConfig.get(testKey);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java

            fileInternalInfo.decode(buffer2, 0, buffer2.length);
            assertEquals(indexNumber2, fileInternalInfo.getIndexNumber());
    
            // Third decode - should overwrite again
            byte[] buffer3 = new byte[8];
            long indexNumber3 = 0x3333333333333333L;
            SMBUtil.writeInt8(indexNumber3, buffer3, 0);
            fileInternalInfo.decode(buffer3, 0, buffer3.length);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top