Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for aastat (0.06 sec)

  1. src/main/webapp/js/admin/moment-with-locales.min.js

    minut"],mm:[e+" minuti",e+" minutit"],h:["\xfche tunni","tund aega","\xfcks tund"],hh:[e+" tunni",e+" tundi"],d:["\xfche p\xe4eva","\xfcks p\xe4ev"],M:["kuu aja","kuu aega","\xfcks kuu"],MM:[e+" kuu",e+" kuud"],y:["\xfche aasta","aasta","\xfcks aasta"],yy:[e+" aasta",e+" aastat"]};return a?n[t][2]?n[t][2]:n[t][1]:s?n[t][0]:n[t][1]}M.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,a){return e?/-...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 360.5K bytes
    - Viewed (2)
  2. src/main/resources/fess_message_nl.properties

    errors.failed_to_upload_mapping_file = Kan mappingbestand niet uploaden.
    errors.invalid_kuromoji_token={0} is geen geldig token.
    errors.invalid_kuromoji_segmentation=Het aantal segmentaties van {0} komt niet overeen met het aantal segmentaties van {1}.
    errors.invalid_str_is_included = {1} is ongeldig in {0}.
    errors.blank_password = Wachtwoord is vereist.
    errors.invalid_confirm_password = Wachtwoordbevestiging komt niet overeen.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/settings.md

    #### Technische Details zu `lru_cache`
    
    `@lru_cache` ändert die Funktion, die es dekoriert, dahingehend, denselben Wert zurückzugeben, der beim ersten Mal zurückgegeben wurde, anstatt ihn erneut zu berechnen und den Code der Funktion jedes Mal auszuführen.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServicePacket.java

            case NB -> "NB";
            case NBSTAT -> "NBSTAT";
            default -> "0x" + Hexdump.toHexString(this.questionType, 4);
            };
            recordTypeString = switch (this.recordType) {
            case A -> "A";
            case NS -> "NS";
            case NULL -> "NULL";
            case NB -> "NB";
            case NBSTAT -> "NBSTAT";
            default -> "0x" + Hexdump.toHexString(this.recordType, 4);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            case NB -> "NB";
            case NBSTAT -> "NBSTAT";
            default -> "0x" + Hexdump.toHexString(questionType, 4);
            };
            recordTypeString = switch (recordType) {
            case A -> "A";
            case NS -> "NS";
            case NULL -> "NULL";
            case NB -> "NB";
            case NBSTAT -> "NBSTAT";
            default -> "0x" + Hexdump.toHexString(recordType, 4);
            };
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication-metrics.go

    		Max:  a.Max,
    	}
    	return w
    }
    
    // QStat holds queue stats for replication
    type QStat struct {
    	Count float64 `json:"count"`
    	Bytes float64 `json:"bytes"`
    }
    
    func (q *QStat) add(o QStat) QStat {
    	return QStat{Bytes: q.Bytes + o.Bytes, Count: q.Count + o.Count}
    }
    
    // InQueueMetric holds queue stats for replication
    type InQueueMetric struct {
    	Curr QStat `json:"curr" msg:"cq"`
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #                                                                             Lasta Di
        #                                                                             ========
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o dbfluteDiXmlNamespace: (NotRequired - Default 'dbflute')
        #  The namespace of DBFlute DI configuration for Lasta Di.
        #
        # @LastaDiOnly
        #; dbfluteDiXmlNamespace = dbflute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 6.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_nl.properties

    labels.searchlog_log_type_search_keyword=Aantal trefwoorden
    labels.searchlog_log_type_search_zerohit=Aantal nulresultaten
    labels.searchlog_log_type_search_zeroclick=Aantal nulklikken
    labels.searchlog_log_type_search_count_hour=Aantal zoekopdrachten/uur
    labels.searchlog_log_type_search_count_day=Aantal zoekopdrachten/dag
    labels.searchlog_log_type_search_user_hour=Aantal gebruikers/uur
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  9. docs/de/docs/advanced/response-cookies.md

    Setzen Sie dann Cookies darin und geben Sie sie dann zurück:
    
    {* ../../docs_src/response_cookies/tutorial001.py hl[10:12] *}
    
    /// tip | Tipp
    
    Beachten Sie, dass, wenn Sie eine Response direkt zurückgeben, anstatt den `Response`-Parameter zu verwenden, FastAPI diese direkt zurückgibt.
    
    Sie müssen also sicherstellen, dass Ihre Daten vom richtigen Typ sind. Z. B. sollten diese mit JSON kompatibel sein, wenn Sie eine `JSONResponse` zurückgeben.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/netbios/NodeStatusRequestTest.java

            // Act
            nodeStatusRequest = new NodeStatusRequest(mockConfig, mockName);
    
            // Assert
            assertSame(mockName, nodeStatusRequest.questionName);
            assertEquals(NameServicePacket.NBSTAT, nodeStatusRequest.questionType);
            assertFalse(nodeStatusRequest.isRecurDesired);
            assertFalse(nodeStatusRequest.isBroadcast);
    
            // Verify config is set through parent constructor
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
Back to top