- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 222 for Representation (0.08 sec)
-
src/main/java/jcifs/SID.java
* resolved in which case the numeric representation is returned. * * @return the domain name */ String getDomainName (); /** * Return text representing the SID type suitable for display to * users. Text includes 'User', 'Domain group', 'Local group', etc. * * @return textual representation of type */ String getTypeText ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.5K bytes - Viewed (0) -
internal/config/lambda/event/arn.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package event import ( "strings" ) // ARN - SQS resource name representation. type ARN struct { TargetID region string } // String - returns string representation. func (arn ARN) String() string { if arn.TargetID.ID == "" && arn.TargetID.Name == "" && arn.region == "" { return "" }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 1.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Node.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 11 07:23:04 UTC 2024 - 3.2K bytes - Viewed (0) -
internal/arn/arn.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 08:31:34 UTC 2024 - 3.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
if (longs.compareAndSet(i, current, next)) { return nextVal; } } } /** * Returns the String representation of the current values of array. * * @return the String representation of the current values of array */ @Override public String toString() { int iMax = length() - 1; if (iMax == -1) { return "[]"; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 10.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/StringModelSource.java
* * @param pom The POM's string representation, may be empty or {@code null}. */ public StringModelSource(CharSequence pom) { this(pom, null); } /** * Creates a new model source backed by the specified string. * * @param pom The POM's string representation, may be empty or {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Version.java
* @see VersionConstraint * @see VersionRange */ @Experimental public interface Version extends Comparable<Version> { /** * Returns a string representation of this version. * @return the string representation of this version */ @Nonnull String asString();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* is based on the integer IP address and not the string representation. */ @Override public boolean equals ( Object obj ) { return ( obj != null ) && ( obj instanceof NbtAddress ) && ( ( (NbtAddress) obj ).address == this.address ); } /** * Returns the {@link java.lang.String} representaion of this address. */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java
* on which it applies. * * @return the name of the tool option for this path type */ @Nonnull Optional<String> option(); /** * Returns the option followed by a string representation of the given path elements. * The path elements are separated by an option-specific or platform-specific separator. * If the given {@code paths} argument contains no element, then this method returns an empty string.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 5K bytes - Viewed (0)