- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 196 for Consume (0.04 sec)
-
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LifecycleProvider.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.spi; import org.apache.maven.api.Lifecycle; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link Lifecycle} implementations. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.2K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PathScopeProvider.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.spi; import org.apache.maven.api.PathScope; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link PathScope} implementations. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/TypeProvider.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.spi; import org.apache.maven.api.Type; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link Type} implementations. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java
import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Transport for specified remote repository (using provided remote repository base URI as root). Must be treated as a * resource, best in try-with-resource block. * * @since 4.0.0 */ @Experimental @Consumer public interface Transport extends Closeable { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java
@Test @DisplayName("Test decode returns correct bytes consumed") void testDecodeBytesConsumed() throws SMBProtocolDecodingException { // Prepare minimal buffer byte[] buffer = new byte[24]; // Test with offset 0 int bytesDecoded = response.decode(buffer, 0, 24); assertEquals(24, bytesDecoded, "Should return 24 bytes consumed from offset 0"); // Test with different offset
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.util; import java.util.function.Consumer; import org.codelibs.fess.Constants; /** * A wrapper class that manages a system process for job execution. * This class provides access to the underlying process and manages
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapKeySet.java
import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.J2ktIncompatible; import java.io.Serializable; import java.util.Spliterator; import java.util.function.Consumer; import org.jspecify.annotations.Nullable; /** * {@code keySet()} implementation for {@link ImmutableMap}. * * @author Jesse Wilson * @author Kevin Bourrillion */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
*/ package org.codelibs.fess.ldap; import java.util.Hashtable; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; import java.util.function.Consumer; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.helper.ActivityHelper; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.mylasta.action.FessUserBean;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* Epilogue hook for action processing. * * @param runtime the action runtime * @param consumer the consumer to execute */ public void godHandEpilogue(final ActionRuntime runtime, final Consumer<ActionRuntime> consumer) { consumer.accept(runtime); } /** * Before hook for action processing. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
* * @param src the source bean object * @param dest the destination bean object * @param option a consumer function to configure copy options */ protected static void copyBeanToBean(final Object src, final Object dest, final Consumer<CopyOptions> option) { BeanUtil.copyBeanToBean(src, dest, option); } /** * Copies properties from a map to a bean object.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0)