Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,467 for dist (0.11 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    public class SearchBody extends BaseSearchDictBody {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 806 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.synonym;
    
    import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm;
    
    public class DownloadBody extends DownloadForm {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 798 bytes
    - Viewed (0)
  3. docs/em/docs/advanced/additional-responses.md

    โœ‹๏ธ ๐Ÿ‘ˆ ๐ŸŒ– ๐Ÿ“จ ๐Ÿ‘† โœ”๏ธ โš’ ๐Ÿ’ญ ๐Ÿ‘† ๐Ÿ“จ `Response` ๐Ÿ’– `JSONResponse` ๐Ÿ”—, โฎ๏ธ ๐Ÿ‘† ๐Ÿ‘” ๐Ÿ“Ÿ & ๐ŸŽš.
    
    ## ๐ŸŒ– ๐Ÿ“จ โฎ๏ธ `model`
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ ๐Ÿ‘จโ€๐ŸŽจ* ๐Ÿ”ข `responses`.
    
    โšซ๏ธ ๐Ÿ“จ `dict`, ๐Ÿ”‘ ๐Ÿ‘” ๐Ÿ“Ÿ ๐Ÿ”  ๐Ÿ“จ, ๐Ÿ’– `200`, & ๐Ÿ’ฒ ๐ŸŽ `dict`โ“‚ โฎ๏ธ โ„น ๐Ÿ”  ๐Ÿ‘ซ.
    
    ๐Ÿ”  ๐Ÿ‘ˆ ๐Ÿ“จ `dict`โ“‚ ๐Ÿ’ช โœ”๏ธ ๐Ÿ”‘ `model`, โš— Pydantic ๐Ÿท, ๐Ÿ’– `response_model`.
    
    **FastAPI** ๐Ÿ”œ โœŠ ๐Ÿ‘ˆ ๐Ÿท, ๐Ÿ— ๐Ÿšฎ ๐ŸŽป ๐Ÿ”— & ๐Ÿ”Œ โšซ๏ธ โ˜‘ ๐Ÿฅ‰ ๐Ÿ—„.
    
    ๐Ÿ–ผ, ๐Ÿ“ฃ โž•1๏ธโƒฃ ๐Ÿ“จ โฎ๏ธ ๐Ÿ‘” ๐Ÿ“Ÿ `404` & Pydantic ๐Ÿท `Message`, ๐Ÿ‘† ๐Ÿ’ช โœ:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication.sh

    echo -n "Starting MinIO instances ..."
    minio server --certs-dir /tmp/certs --address ":9001" --console-address ":10000" /tmp/minio1/{1...4}/disk{1...4} /tmp/minio1/{5...8}/disk{1...4} >/tmp/minio1_1.log 2>&1 &
    minio server --certs-dir /tmp/certs --address ":9002" --console-address ":11000" /tmp/minio2/{1...4}/disk{1...4} /tmp/minio2/{5...8}/disk{1...4} >/tmp/minio2_1.log 2>&1 &
    echo "done"
    
    if [ ! -f ./mc ]; then
    	echo -n "Downloading MinIO client ..."
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    				continue
    			}
    		}
    		var maxUsedPct int
    		for _, disk := range zinfo {
    			if disk == nil || disk.Total == 0 {
    				continue
    			}
    			available += disk.Total - disk.Used
    
    			// set maxUsedPct to the value from the disk with the least space percentage.
    			if pctUsed := int(disk.Used * 100 / disk.Total); pctUsed > maxUsedPct {
    				maxUsedPct = pctUsed
    			}
    		}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    	// Collect any disk healing.
    	healing, _ := getAggregatedBackgroundHealState(ctx, nil)
    	healDisks := make(map[string]struct{}, len(healing.HealDisks))
    	for _, disk := range healing.HealDisks {
    		healDisks[disk] = struct{}{}
    	}
    
    	// find all disks which belong to each respective endpoints
    	for i, disk := range storageInfo.Disks {
    		if _, ok := healDisks[disk.Endpoint]; ok {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

            // parent references child with artifactId (which is not directory name)
            // then relative path calculation will fail during build from disk but success when calculated from repo
            try {
                // build from disk expected to fail
                testInheritance("tricky-flat-artifactId-urls", false);
                // fail( "should have failed since module reference == artifactId != directory name" );
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. docs/ja/docs/advanced/response-directly.md

    # ใƒฌใ‚นใƒใƒณใ‚นใ‚’็›ดๆŽฅ่ฟ”ใ™
    
    **FastAPI** ใฎ *path operation* ใงใฏใ€้€šๅธธใฏไปปๆ„ใฎใƒ‡ใƒผใ‚ฟใ‚’่ฟ”ใ™ใ“ใจใŒใงใใพใ™: ไพ‹ใˆใฐใ€ `dict`ใ€`list`ใ€Pydanticใƒขใƒ‡ใƒซใ€ใƒ‡ใƒผใ‚ฟใƒ™ใƒผใ‚นใƒขใƒ‡ใƒซใชใฉใงใ™ใ€‚
    
    ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใงใฏใ€**FastAPI** ใฏ [JSONไบ’ๆ›ใ‚จใƒณใ‚ณใƒผใƒ€](../tutorial/encoder.md){.internal-link target=_blank} ใง่ชฌๆ˜Žใ•ใ‚Œใฆใ„ใ‚‹ `jsonable_encoder` ใซใ‚ˆใ‚Šใ€่ฟ”ใ™ๅ€คใ‚’่‡ชๅ‹•็š„ใซJSONใซๅค‰ๆ›ใ—ใพใ™ใ€‚
    
    ใ“ใฎใจใ่ƒŒๅพŒใงใฏใ€JSONไบ’ๆ›ใชใƒ‡ใƒผใ‚ฟ (ไพ‹ใˆใฐ`dict`) ใ‚’ใ€ใ‚ฏใƒฉใ‚คใ‚ขใƒณใƒˆใธ้€ไฟกใ•ใ‚Œใ‚‹ใƒฌใ‚นใƒใƒณใ‚นใจใ—ใฆๅˆฉ็”จใ•ใ‚Œใ‚‹ `JSONResponse` ใฎไธญใซๅซใ‚ใพใ™ใ€‚
    
    ใ—ใ‹ใ—ใ€*path operation* ใ‹ใ‚‰ `JSONResponse` ใ‚’็›ดๆŽฅ่ฟ”ใ™ใ“ใจใ‚‚ใงใใพใ™ใ€‚
    
    ใ“ใ‚Œใฏไพ‹ใˆใฐใ€ใ‚ซใ‚นใ‚ฟใƒ ใƒ˜ใƒƒใƒ€ใƒผใ‚„cookieใ‚’่ฟ”ใ™ใจใใซไพฟๅˆฉใงใ™ใ€‚
    
    ## `Response` ใ‚’่ฟ”ใ™
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    import java.util.Date;
    import java.util.List;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.dict.DictionaryException;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. cmd/data-scanner-metric.go

    }
    
    // currentPathUpdater provides a lightweight update function for keeping track of
    // current objects for each disk.
    // Returns a function that can be used to update the current object
    // and a function to call to when processing finished.
    func (p *scannerMetrics) currentPathUpdater(disk, initial string) (update func(path string), done func()) {
    	initialPtr := unsafe.Pointer(&initial)
    	tracker := &currentPathTracker{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top