Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 269 for Lain (0.06 sec)

  1. okcurl/src/main/kotlin/okhttp3/curl/internal/-MainCommon.kt

    import okhttp3.MediaType
    import okhttp3.MediaType.Companion.toMediaTypeOrNull
    import okhttp3.Request
    import okhttp3.RequestBody.Companion.toRequestBody
    import okhttp3.curl.Main
    import okhttp3.internal.http.StatusLine
    import okio.sink
    
    internal fun Main.commonCreateRequest(): Request {
      val request = Request.Builder()
    
      val requestMethod = method ?: if (data != null) "POST" else "GET"
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/FessBoot.java

        //                                                                        ============
    
        /**
         * Main method to start the Fess application.
         * Sets up system properties, configures Tomcat, and starts the server.
         *
         * @param args command line arguments (not used)
         */
        public static void main(final String[] args) {
            // update java.io.tmpdir
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/index.jsp

    					</button>
    					<la:link href="/search/advance" styleClass="btn btn-info">
    						<em class="fa fa-cog">
    						<la:message key="labels.advance" />
    					</la:link>
    				</div>
    			</div>
    		</div>
    		<main class="container">
    			<div class="row">
    				<div class="col text-center searchFormBox">
    					<h1 class="mainLogo">
    						<img src="${fe:url('/images/logo.png')}"
    							alt="<la:message key="labels.index_title" />" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/assemblies/targz-bin.xml

    <?xml version="1.0"?>
    <assembly>
    	<id>targz</id>
    	<formats>
    		<format>tar.gz</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 296 bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/admin/footer.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <footer class="main-footer">
    	<div class="float-right d-none d-sm-inline-block"></div>
    	<la:message key="labels.footer.copyright" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 213 bytes
    - Viewed (0)
  6. samples/static-server/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("com.gradleup.shadow")
    }
    
    tasks.compileJava {
      options.isWarnings = false
    }
    
    tasks.jar {
      manifest {
        attributes("Main-Class" to "okhttp3.sample.SampleServer")
      }
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.mockwebserver)
    }
    
    tasks.shadowJar {
      mergeServiceFiles()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 17 05:15:23 UTC 2025
    - 338 bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java

                return murmur3_32(seed).hashBytes(input).asBytes();
              }
            };
        // Murmur3A, MurmurHash3 for x86, 32-bit (MurmurHash3_x86_32)
        // https://github.com/aappleby/smhasher/blob/master/src/main.cpp
        HashTestUtils.verifyHashFunction(hf, 32, 0xB0F57EE3);
      }
    
      public void testParanoid() {
        HashFn hf =
            new HashFn() {
              @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
            return docs.subList(fromIndex, toIndex);
        }
    
        /**
         * Performs a search using only the main searcher without rank fusion.
         * This method is used when only one searcher is available or configured.
         *
         * @param searcher the main searcher to use for the search operation
         * @param query the search query string
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. src/main/assemblies/zip-bin.xml

    <?xml version="1.0"?>
    <assembly>
    	<id>zip</id>
    	<formats>
    		<format>zip</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 291 bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

            }
        }
    
        public void test_main_withHelp() {
            // Test main method with help option
            PrintStream originalErr = System.err;
            try {
                ByteArrayOutputStream errContent = new ByteArrayOutputStream();
                System.setErr(new PrintStream(errContent));
    
                String[] args = { "--help" };
                // Note: main calls System.exit, so we can't test it directly
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
Back to top