Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for oris (0.04 sec)

  1. src/main/resources/fess_message_fr.properties

    errors.invalid_query_sort_value=Le tri donné ({0}) n'est pas valide.
    errors.invalid_query_unsupported_sort_field=Le tri donné ({0}) n'est pas pris en charge.
    errors.invalid_query_unsupported_sort_order=L'ordre de tri donné ({0}) n'est pas pris en charge.
    
    errors.crud_invalid_mode=Mode invalide (la valeur attendue est {0}, mais c'est {1}).
    errors.crud_failed_to_create_instance=Impossible de créer une nouvelle donnée.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsOrder(b, c); // Now b < c, but before MNG-6964 they were equal
            checkVersionsOrder(a, b); // Should still be true
        }
    
        @Test
        void testLocaleIndependent() {
            Locale orig = Locale.getDefault();
            Locale[] locales = {Locale.ENGLISH, new Locale("tr"), Locale.getDefault()};
            try {
                for (Locale locale : locales) {
                    Locale.setDefault(locale);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/plugins/timepicker/bootstrap-timepicker.min.css

    /*!
     * Timepicker Component for Twitter Bootstrap
     *
     * Copyright 2013 Joris de Wit
     *
     * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
     *
     * For the full copyright and license information, please view the LICENSE
     * file that was distributed with this source code.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileAttributesTest.java

            try ( SmbResource f = createTestFile() ) {
                try {
                    long orig = f.createTime();
                    long time = System.currentTimeMillis() - 60 * 60 * 12;
                    f.setCreateTime(time);
                    long newTime = f.createTime();
                    if ( newTime == orig ) {
                        Assume.assumeTrue("Create time was not changed", false);
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_EQ_Y, "1.unknown", "1.UNKNOWN");
            assertOrder(X_EQ_Y, "1.unknown", "1.Unknown");
        }
    
        @Test
        void testCaseInsensitiveOrderingOfQualifiersIsLocaleIndependent() {
            Locale orig = Locale.getDefault();
            try {
                Locale[] locales = {Locale.ENGLISH, new Locale("tr")};
                for (Locale locale : locales) {
                    Locale.setDefault(locale);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. docs/features/caching.md

    As recommended by the HTTP RFC the max age of a document is defaulted to 10% of the 
    document's age at the time it was served based on "Last-Modified". Default expiration dates aren't used for URIs 
    containing a query.
    
     - CallStart
     - **CacheHit**
     - CallEnd
     
    ### Cache Miss
    
    Under a cache miss the normal request events are seen but an additional event shows the presence of the cache.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. cmd/fmt-gen.go

      filesystem separated by space. You may also use a '...' convention
      to abbreviate the directory arguments. Remote directories in a
      distributed setup are encoded as HTTP(s) URIs.
    {{if .VisibleFlags}}
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}{{end}}
    EXAMPLES:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 22:22:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/main/resources/app.xml

    				</component>
    			</arg>
    		</postConstruct>
    	</component>
    	<component name="osddHelper" class="org.codelibs.fess.helper.OsddHelper">
    		<property name="osddPath">"/WEB-INF/orig/open-search/osdd.xml"</property>
    		<property name="encoding">"UTF-8"</property>
    	</component>
    	<component name="suggestHelper" class="org.codelibs.fess.helper.SuggestHelper">
    	</component>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        public static Path getClassesPath(final String... names) {
            return getPath("WEB-INF/", "classes", names);
        }
    
        public static Path getOrigPath(final String... names) {
            return getPath("WEB-INF/", "orig", names);
        }
    
        public static Path getMailTemplatePath(final String... names) {
            return getPath("WEB-INF/", "mail", names);
        }
    
        public static Path getViewTemplatePath(final String... names) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 08:52:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. internal/s3select/sql/value.go

    // numbers and booleans.
    
    // Supported comparison operators
    const (
    	opLt    = "<"
    	opLte   = "<="
    	opGt    = ">"
    	opGte   = ">="
    	opEq    = "="
    	opIneq  = "!="
    	opIs    = "IS"
    	opIsNot = "ISNOT"
    )
    
    // InferBytesType will attempt to infer the data type of bytes.
    // Will fail if value type is not bytes or it would result in invalid utf8.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
Back to top