Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Takken (0.03 sec)

  1. docs/nl/docs/python-types.md

    ```
    
    Het goede nieuws is dat als je eenmaal Python 3.10 gebruikt, je je daar geen zorgen meer over hoeft te maken, omdat je dan gewoon `|` kunt gebruiken om unions van types te definiëren:
    
    {* ../../docs_src/python_types/tutorial009c_py310.py hl[1,4] *}
    
    
    Dan hoef je je geen zorgen te maken over namen als `Optional` en `Union`. 😎
    
    #### Generieke typen
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. cmd/os-instrumented.go

    }
    
    // Stat captures time taken to call os.Stat
    func Stat(name string) (info os.FileInfo, err error) {
    	defer updateOSMetrics(osMetricStat, name)(err)
    	return os.Stat(name)
    }
    
    // Create captures time taken to call os.Create
    func Create(name string) (f *os.File, err error) {
    	defer updateOSMetrics(osMetricCreate, name)(err)
    	return os.Create(name)
    }
    
    // Fdatasync captures time taken to call Fdatasync
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestDeleteResponse.java

     * This class contains information about any errors that occurred during the operation
     * and the time taken to complete the operation.
     */
    public class SuggestDeleteResponse {
        /** List of errors that occurred during the operation. */
        protected final List<Throwable> errors = new ArrayList<>();
        /** Time taken for the operation in milliseconds. */
        protected final long took;
    
        /**
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchResultList.java

        }
    
        /**
         * Sets the time taken for the search in milliseconds.
         * @param tookInMillis The time taken in milliseconds.
         */
        public void setTookInMillis(final long tookInMillis) {
            this.tookInMillis = tookInMillis;
        }
    
        /**
         * Returns the time taken for the search in milliseconds.
         * @return The time taken in milliseconds.
         */
        public long getTookInMillis() {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        protected final long allRecordCount;
    
        /** The relation type indicating how the record count should be interpreted (e.g., "eq", "gte"). */
        protected final String allRecordCountRelation;
    
        /** The time taken to execute the search query in milliseconds. */
        protected final long queryTime;
    
        /** Flag indicating whether the search results are partial due to timeout or other constraints. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            // Value taken from p2
            // ----------------------------------------------------------------------
    
            assertEquals("mailing-list", project4.getMailingLists().get(0).getName());
    
            // ----------------------------------------------------------------------
            // Value taken from p1
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 04 10:35:11 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

            // Value taken from p2
            // ----------------------------------------------------------------------
    
            assertEquals("mailing-list", p4.getMailingLists().get(0).getName());
    
            // ----------------------------------------------------------------------
            // Value taken from p1
            // ----------------------------------------------------------------------
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java

        /** Time taken for the operation in milliseconds. */
        protected final long took;
    
        /**
         * Constructor for SuggestIndexResponse.
         * @param numberOfSuggestDocs The number of suggest documents.
         * @param numberOfInputDocs The number of input documents.
         * @param errors A list of Throwables representing errors.
         * @param took The time taken for the operation in milliseconds.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_nl.properties

    labels.handler_parameter=Parameter
    labels.handlerScript=Script
    labels.data_crawling_button_create=Maken
    labels.data_crawling_button_create_job=Nieuwe taak maken
    labels.wizard_title_configuration=Configuratiewizard
    labels.wizard_start_title=Snelle installatie
    labels.wizard_start_desc=U kunt eenvoudig een crawlconfiguratie maken met behulp van de configuratiewizard.
    labels.wizard_start_button=Start configuratie
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

         *
         * @return the index
         */
        public String getIndex() {
            return index;
        }
    
        /**
         * Returns the time taken to generate the response in milliseconds.
         *
         * @return the time taken in milliseconds
         */
        public long getTookMs() {
            return tookMs;
        }
    
        /**
         * Returns the list of popular words.
         *
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top