Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 104 for prin (0.02 sec)

  1. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

                            .orElse("-"));
            log(valueMap);
        }
    
        /**
         * Print the log.
         * @param action The action.
         * @param user The user.
         * @param params The parameters.
         */
        public void print(final String action, final OptionalThing<FessUserBean> user, final Map<String, String> params) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/searchResults.jsp

    						</a>
    					</div>
    					</c:if>
    					<div class="description">${doc.content_description}</div>
    				</div>
    				<div class="site text-truncate">
    					<c:if test="${clipboardCopyIcon}"><i class="far fa-copy url-copy d-print-none" data-clipboard-text="${doc.url_link}"></i></c:if>
    					<cite>${f:h(doc.site_path)}</cite>
    				</div>
    				<div class="more">
    					<a href="#result${s.index}"><la:message
    							key="labels.search_result_more" /></a>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/lt/stopwords.txt

    man
    mane
    manęs
    manimi
    mano
    manyje
    mes
    metu
    mudu
    mudvi
    mudviejų
    mudviem
    mudviese
    mumis
    mums
    mumyse
    mus
    mūsų
    nei
    nes
    net
    nors
    nuo
    o
    pat
    per
    po
    prie
    prieš
    sau
    save
    savęs
    savimi
    savo
    savyje
    su
    tačiau
    tada
    tai
    taip
    tas
    tau
    tave
    tavęs
    tavimi
    tavyje
    ten
    to
    todėl
    tu
    tuo
    už
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 786 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            // Verify nulls suppression is enabled
            assertTrue("Nulls should be suppressed", testProvider.isNullsSuppressed());
    
            // Verify pretty print is enabled
            assertFalse("Pretty print should not be suppressed", testProvider.isPrettyPrintSuppressed());
    
            // Verify mapping option configuration
            JsonMappingOption mappingOption = testProvider.provideMappingOption();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/font-awesome.min.css

    .fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{conte...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_fr.properties

    errors.invalid_query_sort_value = Le tri spécifié {0} n'est pas valide.
    errors.invalid_query_unsupported_sort_field = Le tri spécifié {0} n'est pas pris en charge.
    errors.invalid_query_unsupported_sort_order = L'ordre de tri spécifié {0} n'est pas pris en charge.
    errors.invalid_query_cannot_process=Impossible de traiter la requête spécifiée.
    errors.crud_invalid_mode = Le mode est incorrect. (pas {0}, mais {1})
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/CheckHandshake.java

          for (Certificate certificate : chain.connection().handshake().peerCertificates()) {
            String pin = CertificatePinner.pin(certificate);
            if (denylist.contains(pin)) {
              throw new IOException("Denylisted peer certificate: " + pin);
            }
          }
          return chain.proceed(chain.request());
        }
      };
    
      private final OkHttpClient client = new OkHttpClient.Builder()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

    import mockwebserver3.MockWebServer
    import mockwebserver3.SocketEffect.ShutdownConnection
    import mockwebserver3.junit5.StartStop
    import okhttp3.CertificatePinner
    import okhttp3.CertificatePinner.Companion.pin
    import okhttp3.OkHttpClientTestRule
    import okhttp3.RecordingHostnameVerifier
    import okhttp3.Request
    import okhttp3.internal.platform.Platform.Companion.get
    import okhttp3.testing.PlatformRule
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 24.3K bytes
    - Viewed (1)
  9. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            assertEquals("Executed: javascript console.log('test')", result);
    
            result = jobExecutor.execute("python", "print('test')");
            assertEquals("Executed: python print('test')", result);
    
            result = jobExecutor.execute("groovy", "println 'test'");
            assertEquals("Executed: groovy println 'test'", result);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. util/gradle_integration_tests.sh

    # (And we run it after the main build so that that build has already downloaded Java 11 if necessary.)
    ./mvnw --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' initialize -P print-java-11-home
    export JAVA_HOME=$(<target/java_11_home)
    
    # Gradle Wrapper overwrites some files when it runs.
    # To avoid modifying the Git client, we copy everything we need to another directory.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jan 02 19:24:12 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top