- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 551 for gats (0.01 sec)
-
src/main/java/jcifs/dcerpc/DcerpcMessage.java
/** * The result code of the DCERPC operation */ protected int result = 0; /** * Gets the packet type of this DCERPC message * @return the packet type */ public int getPtype() { return ptype; } /** * Gets the flags of this DCERPC message * @return the message flags */ public int getFlags() { return flags; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
cmd/data-usage-cache.go
ats.Tiers[tier] = ats.Tiers[tier].add(st) } } func (ats *allTierStats) merge(other *allTierStats) { for tier, st := range other.Tiers { ats.Tiers[tier] = ats.Tiers[tier].add(st) } } func (ats *allTierStats) clone() *allTierStats { if ats == nil { return nil } dst := *ats dst.Tiers = make(map[string]tierStats, len(ats.Tiers)) maps.Copy(dst.Tiers, ats.Tiers) return &dst }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
} } final FacetInfo facetInfo = ComponentUtil.getComponent("facetInfo"); queryMap.values().stream().distinct().forEach(facetInfo::addQuery); } /** * Gets the title for this facet query view. * * @return the title string */ public String getTitle() { return title; } /** * Sets the title for this facet query view.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
} /** * Gets the session flags from the response * * @return the sessionFlags */ public int getSessionFlags() { return this.sessionFlags; } /** * Gets the security blob from the session setup response * * @return security blob */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
return authResult.account().username(); } @Override public String toString() { return "{" + authResult.account().username() + "}"; } /** * Gets the Azure AD user associated with this credential. * @return The Azure AD user instance. */ public AzureAdUser getUser() { return new AzureAdUser(authResult); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
* @param token the SPNEGO token bytes to parse * @throws IOException if parsing fails */ public NegTokenTarg(final byte[] token) throws IOException { parse(token); } /** * Gets the negotiation result code * @return the result code */ public int getResult() { return this.result; } /** * Sets the negotiation result code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java
/** * Returns the start time of the session. * * @return the start time as an Instant object, never {@code null} */ @Nonnull Instant getStartTime(); /** * Gets the directory of the topmost project being built, usually the current directory or the * directory pointed at by the {@code -f/--file} command line argument. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
} } } /** * Gets the domain SID for this SID. * * @return domain SID */ public SID getDomainSid() { return new SID(this, SID_TYPE_DOMAIN, this.domainName, null, getType() != SID_TYPE_DOMAIN); } /** * Gets the RID (relative identifier) of this SID. * * @return the RID */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
cmd/data-usage_test.go
}, { // Gets compacted... path: "bucket/dir1", size: 1302010, objs: 5, oSizes: sizeHistogram{0: 1, 1: 1, 2: 2, 4: 1}, }, { // Gets compacted at this level... path: "bucket/dirwithalot/0", size: filesBelowT, objs: filesBelowT, oSizes: sizeHistogram{0: filesBelowT}, }, { // Gets compacted at this level (below obj threshold)...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
protected int priority = 99; /** * Default constructor. */ public Ingester() { // Default constructor } /** * Gets the priority of this ingester. * Lower numbers indicate higher priority. * * @return the priority value */ public int getPriority() { return priority; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0)