- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,637 for params2 (0.06 sec)
-
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilderTest.groovy
_ * method.name >> name _ * method.overrideSignature >> "$name(${paramTypes.join(', ')})" _ * method.parameters >> paramTypes.collect { def param = new ParameterMetaData("p"); param.type = new TypeMetaData(it) return param } _ * method.ownerClass >> classMetaData _ * method.returnType >> new TypeMetaData(args.returnType ?: 'ReturnType')
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 7.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEventCatapult.java
*/ @Deprecated(since = "4.0.0") interface ModelBuildingEventCatapult { /** * Notifies the specified listener of the given event. * * @param listener The listener to notify, must not be {@code null}. * @param event The event to fire, must not be {@code null}. */ void fire(ModelBuildingListener listener, ModelBuildingEvent event);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassLoaderIterator.java
* * @param classLoader * クラスローダ。{@literal null}であってはいけません * @return {@link ClassLoaderIterator}をラップした{@link Iterable} */ public static Iterable<ClassLoader> iterable(final ClassLoader classLoader) { return () -> new ClassLoaderIterator(classLoader); } /** * インスタンスを構築します。 * * @param classLoader
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
*/ public class SmbComNegotiate extends ServerMessageBlock implements SmbNegotiationRequest { private final boolean signingEnforced; private String[] dialects; /** * * @param config * @param signingEnforced */ public SmbComNegotiate ( Configuration config, boolean signingEnforced ) { super(config, SMB_COM_NEGOTIATE); this.signingEnforced = signingEnforced;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java
import org.apache.maven.api.cli.ParserException; import org.codehaus.plexus.classworlds.ClassWorld; import static java.util.Objects.requireNonNull; /** * The CLI "new-gen". * * @param <O> the options type * @param <R> the request type */ public abstract class ClingSupport<O extends Options, R extends InvokerRequest<O>> { static final String CORE_CLASS_REALM_ID = "plexus.core";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
cmd/peer-rest-server.go
return madminStorageInfo.NewJSONWith(&info), nil } // ServerInfoHandler - returns Server Info func (s *peerRESTServer) ServerInfoHandler(params *grid.MSS) (*grid.JSON[madmin.ServerProperties], *grid.RemoteErr) { r := http.Request{Host: globalLocalNodeName} metrics, err := strconv.ParseBool(params.Get(peerRESTMetrics)) if err != nil { return nil, grid.NewRemoteErr(err) } info := getLocalServerProperty(globalEndpoints, &r, metrics)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
private String accountName, primaryDomain; private SmbComNegotiateResponse negotiated; private int capabilities; /** * * @param tc * @param negotiated * @param andx * @param cred * @throws SmbException * @throws GeneralSecurityException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 17 10:20:23 UTC 2019 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcSecurityProvider.java
import jcifs.dcerpc.ndr.NdrBuffer; /** * */ public interface DcerpcSecurityProvider { /** * * @param outgoing * @throws DcerpcException */ void wrap ( NdrBuffer outgoing ) throws DcerpcException; /** * * @param incoming * @throws DcerpcException */ void unwrap ( NdrBuffer incoming ) throws DcerpcException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPair.java
/** * Channel bindings type */ public static final int MsvAvChannelBindings = 0x0A; private final int type; private final byte[] raw; /** * @param type * @param raw */ public AvPair ( int type, byte[] raw ) { this.type = type; this.raw = raw; } /** * @return the type */ public final int getType () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/AbstractCache.java
* * @since 10.0 */ public interface StatsCounter { /** * Records cache hits. This should be called when a cache request returns a cached value. * * @param count the number of hits to record * @since 11.0 */ void recordHits(int count); /** * Records cache misses. This should be called when a cache request returns a value that was not
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 9.1K bytes - Viewed (0)