Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 269 for Lain (0.08 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

         */
        public Map<String, String[]> fields = new HashMap<>();
    
        /**
         * Map of advanced search conditions.
         */
        public Map<String, String[]> as = new HashMap<>();
    
        /**
         * The main search query string.
         */
        @Size(max = 1000)
        public String q;
    
        /**
         * The sort parameter for search results.
         */
        @Size(max = 1000)
        public String sort;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. samples/crawler/src/main/java/okhttp3/sample/Crawler.java

            HttpUrl linkWithoutFragment = link.newBuilder().fragment(null).build();
            if (!queue.offer(linkWithoutFragment)) break; // Queue is full.
          }
        }
      }
    
      public static void main(String[] args) throws IOException {
        if (args.length != 2) {
          System.out.println("Usage: Crawler <cache dir> <root>");
          return;
        }
    
        int threadCount = 20;
        int queueLimit = 1000;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jul 23 00:58:06 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/CustomTrust.kt

            for (peerCertificate in response.handshake?.peerCertificates.orEmpty()) {
              println((peerCertificate as X509Certificate).subjectDN)
            }
          }
      }
    }
    
    fun main() {
      CustomTrust().run()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    									<em class="fa fa-fw fa-question-circle">
    									<la:message key="labels.index_help" />
    								</la:link></li>
    						</ul>
    					</div>
    				</div>
    			</nav>
    		</header>
    
    		<main id="content" class="container">
    			<h2>
    				<la:message key="labels.advance_search_title" />
    			</h2>
    			<div class="notification">${notification}</div>
    			<div>
    				<la:info id="msg" message="true">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/kt/CertificatePinning.kt

          for (certificate in response.handshake!!.peerCertificates) {
            println(CertificatePinner.pin(certificate))
          }
        }
      }
    }
    
    fun main() {
      CertificatePinning().run()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/search.jsp

    <link href="${fe:url('/css/font-awesome.min.css')}" rel="stylesheet"
    	type="text/css" />
    </head>
    <body class="search">
    	<jsp:include page="header.jsp" />
    	<main id="content" class="container">
    		<ul class="list-inline">
    			<li class="list-inline-item"><la:message key="labels.searchoptions_menu_sort" /> <a
    				href="#searchOptions" class="badge text-bg-primary text-decoration-none"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/search.jsp

    <link href="${fe:url('/css/font-awesome.min.css')}" rel="stylesheet"
    	type="text/css" />
    </head>
    <body class="search">
    	<jsp:include page="header.jsp" />
    	<main id="content" class="container">
    		<ul class="list-inline">
    			<li class="list-inline-item"><la:message key="labels.searchoptions_menu_sort" /> <a
    				href="#searchOptions" class="badge text-bg-primary text-decoration-none"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/TestTls13Request.kt

              "${response.code} ${response.body.bytes().size}b",
          )
        }
      } catch (ioe: IOException) {
        println(ioe)
      }
    }
    
    fun main(vararg args: String) {
      // System.setProperty("javax.net.debug", "ssl:handshake:verbose");
      Security.insertProviderAt(Conscrypt.newProviderBuilder().provideTrustManager().build(), 1)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 22 14:39:30 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            }
        }
    
        // Test main method with invalid arguments
        public void test_main_withInvalidArguments() {
            ByteArrayOutputStream errContent = new ByteArrayOutputStream();
            PrintStream originalErr = System.err;
            System.setErr(new PrintStream(errContent));
    
            try {
                String[] args = { "--invalidOption", "value" };
                Crawler.main(args);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/CertificatePinning.java

          for (Certificate certificate : response.handshake().peerCertificates()) {
            System.out.println(CertificatePinner.pin(certificate));
          }
        }
      }
    
      public static void main(String... args) throws Exception {
        new CertificatePinning().run();
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Dec 08 21:30:01 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top