- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 635 for managed (0.05 seconds)
-
src/test/java/jcifs/util/ResourceManagerTest.java
} @Test @DisplayName("Test managed resource wrapper") void testManagedResource() throws Exception { TestResource resource = new TestResource("test3"); try (ResourceManager.ManagedResource<TestResource> managed = resourceManager.manage(resource)) { assertNotNull(managed.get()); assertEquals("test3", managed.get().getName()); assertFalse(resource.isClosed());Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.9K bytes - Click Count (0) -
architecture/build-state-model.md
The build tree state is managed by the `BuildTreeState` class. An instance is created at the start of a build execution and discarded at the end of the execution. ### Build state The "build state" holds the state for a build within the build definition for a single build execution, and is contained by the build tree state. The build state is managed by the `BuildState` class.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed May 22 13:39:49 GMT 2024 - 3.4K bytes - Click Count (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin.xml
<build> <pluginManagement> <plugins> <plugin> <groupId>test</groupId> <artifactId>managed-duplicate</artifactId> </plugin> <plugin> <groupId>test</groupId> <artifactId>managed-duplicate</artifactId> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>test</groupId>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
When developing an entirely new class (task, extension, domain object, etc), the API should consist of managed lazy properties. Preferably, these new classes should be 100% managed and have their implementation generated by Gradle at runtime. It's acceptable for implementation classes to be written to fit into existing code, but new classes must not instantiate managed properties or implement getters manually. This is preferred: ```groovy
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Oct 15 20:00:57 GMT 2024 - 10K bytes - Click Count (0) -
internal/config/crypto.go
"io" jsoniter "github.com/json-iterator/go" "github.com/minio/minio/internal/kms" "github.com/secure-io/sio-go" "github.com/secure-io/sio-go/sioutil" ) // EncryptBytes encrypts the plaintext with a key managed by KMS. // The context is bound to the returned ciphertext. // // The same context must be provided when decrypting the // ciphertext. func EncryptBytes(k *kms.KMS, plaintext []byte, context kms.Context) ([]byte, error) {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri May 16 14:27:42 GMT 2025 - 4.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
timeoutTaskList.addLast(task); start(); return task; } /** * Returns the number of managed {@link TimeoutTask}. * * @return the number of managed {@link TimeoutTask} */ public synchronized int getTimeoutTaskCount() { return timeoutTaskList.size(); } @Override public void run() {
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 7.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
LinkedHashMap::new)); // for each managed dep in the model: // * if there is no corresponding node in the tree, discard the managed dep // * if there's a direct dependency, apply the managed dependency to it and discard the managed dep // * else keep the managed dep managedDependencies.keySet().retainAll(nodes.keySet());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 27 07:40:26 GMT 2025 - 21.2K bytes - Click Count (0) -
src/main/java/jcifs/util/ResourceManager.java
totalReleased.get(), totalLeaks.get(), cleaned); } /** * Create a managed resource wrapper * * @param <T> resource type * @param resource the resource to wrap * @return managed resource */ public <T extends AutoCloseable> ManagedResource<T> manage(T resource) { String resourceId = registerResource(resource);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 16.2K bytes - Click Count (0) -
ci/official/utilities/setup_macos.sh
echo "Current pyevn version: $(pyenv --version)" # Check if pyenv is managed by homebrew. If so, update and upgrade pyenv. # Otherwise, install the latest pyenv from github. if command -v brew &> /dev/null && brew list pyenv &> /dev/null; then # On "ventura-slcn" VMs, pyenv is managed via Homebrew. echo "pyenv is installed and managed by homebrew." (brew update && brew upgrade pyenv) || true else
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Mon Oct 06 22:42:26 GMT 2025 - 6.8K bytes - Click Count (0) -
docs/kms/README.md
| [Gemalto KeySecure /Thales CipherTrust](https://github.com/minio/kes/wiki/Gemalto-KeySecure) | Local KMS. MinIO and KMS On-Premises. | | [Google Cloud Platform SecretManager](https://github.com/minio/kes/wiki/GCP-SecretManager) | Cloud KMS. MinIO in combination with a managed KMS installation |
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 7.2K bytes - Click Count (0)