Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 545 for performer (0.06 seconds)

  1. docs/security/README.md

    5)  Store the encrypted OEK encrypted data key and master key ID in object metadata.
     ```
    
    Only the root/admin user can perform an SSE-S3 key rotation using the Admin-API via [mc](https://github.com/minio/mc). For more details about how to perform key management operations using the CLI refer to [mc admin guide](https://github.com/minio/mc/blob/master/docs/minio-admin-complete-guide.md) or run `mc admin kms key`.
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Feb 26 09:25:50 GMT 2025
    - 13.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                } finally {
                    executorService.shutdownNow();
                }
            }
        }
    
        /**
         * Performs a search operation using rank fusion across available searchers.
         * If only one searcher is available, uses the main searcher. Otherwise, performs
         * concurrent searches across multiple searchers and fuses the results.
         *
         * @param query the search query string
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 27.5K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

                        message.length, System.currentTimeMillis() - encryptionStartTime);
    
                // Perform automatic key rotation if session key is available
                if (sessionKey != null) {
                    try {
                        performAutomaticKeyRotation();
                        log.info("Successfully performed automatic key rotation for session: {}", sessionId);
                    } catch (GeneralSecurityException e) {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 35.5K bytes
    - Click Count (0)
  4. docs/en/docs/management-tasks.md

    Here are the general instructions for the tasks you can perform.
    
    Thanks a lot for your help. 🙇
    
    ## Be Nice
    
    First of all, be nice. 😊
    
    You probably are super nice if you were added to the team, but it's worth mentioning it. 🤓
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  5. docs/logging/README.md

    - Additionally in the case of the erasure coded setup `tags.objectLocation` provides per object details about
      - Pool number the object operation was performed on.
      - Set number the object operation was performed on.
      - The list of drives participating in this operation belong to the set.
    
    ```json
    {
      "version": "1",
      "deploymentid": "90e81272-45d9-4fe8-9c45-c9a7322bf4b5",
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/cache/Cache.java

       * Guava to fix them until Guava is ready to <i>require</i> Java 8 for all users.
       */
      ConcurrentMap<K, V> asMap();
    
      /**
       * Performs any pending maintenance operations needed by the cache. Exactly which activities are
       * performed -- if any -- is implementation-dependent.
       */
      void cleanUp();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 8.3K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/ImmutableBiMap.java

       *
       * <p>If the mapped keys or values contain duplicates (according to {@link
       * Object#equals(Object)}), an {@code IllegalArgumentException} is thrown when the collection
       * operation is performed. (This differs from the {@code Collector} returned by {@link
       * Collectors#toMap(Function, Function)}, which throws an {@code IllegalStateException}.)
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 22.2K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

    public interface Lookup extends Service {
        /**
         * Performs a lookup for given typed component.
         *
         * @param type The component type.
         * @return The component.
         * @param <T> The component type.
         * @throws LookupException if no such component or there is some provisioning related issue.
         */
        @Nonnull
        <T> T lookup(Class<T> type);
    
        /**
         * Performs a lookup for given typed component.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3.3K bytes
    - Click Count (0)
  9. impl/maven-core/src/test/java/org/apache/maven/model/PropertiesTest.java

                assertEquals("value1", wrapper2.getProperty("from.wrapper1"));
                assertEquals("initial.value", wrapper2.getProperty("shared.key"));
    
                // Now wrapper2 performs a write operation
                wrapper2.setProperty("from.wrapper2", "value2");
    
                // Both wrappers should see all changes immediately
                assertEquals("value1", wrapper1.getProperty("from.wrapper1"));
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jun 12 07:26:53 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java

                } finally {
                    context.unindent();
                }
            }
    
            return new UpgradeResult(processedPoms, modifiedPoms, errorPoms);
        }
    
        /**
         * Performs the core model upgrade from current version to target version.
         * This includes namespace updates and module conversion using domtrip.
         * Returns the upgraded document.
         */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 16.6K bytes
    - Click Count (0)
Back to Top