- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for toBuilder (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java
* @see Project#isRootProject() */ @Nonnull Path getRootDirectory(); /** * Returns a proto session builder of this instance. */ @Nonnull default Builder toBuilder() { try { return new Builder( getUserProperties(), getSystemProperties(), getStartTime(), getTopDirectory(), getRootDirectory()); } catch (IllegalStateException e) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
try { final Blob blob = storage.get(BlobId.of(bucket, objectName)); if (blob != null) { // GCS uses metadata instead of tags blob.toBuilder().setMetadata(tags).build().update(); } else { throw new StorageException("Object not found: " + objectName); } } catch (final StorageException e) { throw e;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
.lookup(PropertyContributorsHolder.class) .getPropertyContributors() .values()) { protoSession = protoSession.toBuilder() .withUserProperties(propertyContributor.contribute(protoSession)) .build(); } context.protoSession = protoSession; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0)