Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for generating (0.22 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            thumbnailTaskQueue = new LinkedBlockingQueue<>(thumbnailTaskQueueSize);
            generating = !Constants.TRUE.equalsIgnoreCase(System.getProperty("fess.thumbnail.process"));
            thumbnailQueueThread = new Thread((Runnable) () -> {
                final List<Tuple3<String, String, String>> taskList = new ArrayList<>();
                while (generating) {
                    try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  2. cmd/object-api-putobject_test.go

    	ExecExtendedObjectLayerTest(t, testObjectAPIPutObject)
    }
    
    // Tests validate correctness of PutObject.
    func testObjectAPIPutObject(obj ObjectLayer, instanceType string, t TestErrHandler) {
    	// Generating cases for which the PutObject fails.
    	bucket := "minio-bucket"
    	object := "minio-object"
    
    	// Create bucket.
    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 25.8K bytes
    - Viewed (0)
  3. cmd/signature-v4-parser_test.go

    		// A valid credential is generated.
    		// Test case with invalid credential field.
    		{
    			inputV4AuthStr: signV4Algorithm +
    				strings.Join([]string{
    					// generating a valid credential field.
    					generateCredentialStr(
    						"Z7IXGOO6BZ0REAN1Q26I",
    						sampleTimeStr,
    						"us-west-1",
    						"s3",
    						"aws4_request"),
    					// Incorrect SignedHeader field.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 27.4K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/generate-clients.md

    We will probably still want to keep it for OpenAPI in general, as that will ensure that the operation IDs are **unique**.
    
    But for the generated client we could **modify** the OpenAPI operation IDs right before generating the clients, just to make those method names nicer and **cleaner**.
    
    We could download the OpenAPI JSON to a file `openapi.json` and then we could **remove that prefixed tag** with a script like this:
    
    === "Python"
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                if (config == null) {
                    throw new ThumbnailGenerationException("No CrawlingConfig: " + configId);
                }
    
                if (logger.isInfoEnabled()) {
                    logger.info("Generating Thumbnail: {}", url);
                }
    
                final CrawlerClientFactory crawlerClientFactory =
                        config.initializeClientFactory(() -> ComponentUtil.getComponent(CrawlerClientFactory.class));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Predicates.java

          this.components = components;
        }
    
        @Override
        public boolean apply(@ParametricNullness T t) {
          // Avoid using the Iterator to avoid generating garbage (issue 820).
          for (int i = 0; i < components.size(); i++) {
            if (!components.get(i).apply(t)) {
              return false;
            }
          }
          return true;
        }
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

    import java.util.Arrays;
    import java.util.concurrent.atomic.AtomicLongArray;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Collections of strategies of generating the k * log(M) bits required for an element to be mapped
     * to a BloomFilter of M bits and k hash functions. These strategies are part of the serialized form
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 10.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Predicates.java

          this.components = components;
        }
    
        @Override
        public boolean apply(@ParametricNullness T t) {
          // Avoid using the Iterator to avoid generating garbage (issue 820).
          for (int i = 0; i < components.size(); i++) {
            if (!components.get(i).apply(t)) {
              return false;
            }
          }
          return true;
        }
    
        @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/PreconditionsTest.java

         * non-@Nullable parameter to trigger a NullPointerException.
         *
         * (We still define this empty method to keep PackageSanityTests from generating its own
         * automated nullness tests, which would fail.)
         */
      }
    
      private static final Object IGNORE_ME =
          new Object() {
            @Override
            public String toString() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                println(richReport.toText())
                block()
            }
        }
    
        /**
         * Runs the binary compatibility check against two source trees, but fails without generating a rich report.
         *
         * The fixture build supports both Java and Kotlin sources.
         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
Back to top