- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,632 for Private (0.06 sec)
-
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.private-javadoc.gradle.kts
*/ import org.gradle.api.tasks.javadoc.Javadoc import org.gradle.external.javadoc.StandardJavadocDocletOptions // Configures javadoc task for java projects, ensuring javadoc is compliant. // Javadoc is generated for private classes and methods, and files are allowed to omit javadoc. // These requirements are different than those of the public javadoc. // This does not configure the public Javadoc published to the website
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java
/** * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports * authentication via exchange of private/public keys and private key was used for authentication. * * @return passphrase of the private key file */ public String getPassphrase() { return passphrase; } /** * Set the passphrase of the private key file. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java
*/ final class Smb3KeyDerivation { private static final byte[] SIGNCONTEXT_300 = toCBytes("SmbSign"); private static final byte[] SIGNLABEL_300 = toCBytes("SMB2AESCMAC"); private static final byte[] SIGNLABEL_311 = toCBytes("SMBSigningKey"); private static final byte[] APPCONTEXT_300 = toCBytes("SmbRpc"); private static final byte[] APPLABEL_300 = toCBytes("SMB2APP");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
private int nextEntryOffset; private int fileIndex; private long creationTime; private long lastAccessTime; private long lastWriteTime; private long changeTime; private long endOfFile; private long allocationSize; private int extFileAttributes; private int eaSize; private String shortName; private String filename;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/utils/Os.java
*/ private static final String FAMILY_MAC = "mac"; /** * OS family that can be tested for. {@value} */ private static final String FAMILY_TANDEM = "tandem"; /** * OS family that can be tested for. {@value} */ private static final String FAMILY_UNIX = "unix"; /** * OS family that can be tested for. {@value} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerEnumIterator.java
private static final Logger log = LoggerFactory.getLogger(NetServerEnumIterator.class); private final NetServerEnum2 request; private final NetServerEnum2Response response; private final SmbResource parent; private final SmbTreeHandleImpl treeHandle; private final ResourceNameFilter nameFilter; private final boolean workgroup; private int ridx; private FileEntry next;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
/** */ public class Parameter implements Cloneable { private String alias; private String name; private String type; private boolean required; private boolean editable = true; private String description; private String expression; private String deprecated; private String defaultValue; private String implementation; private Requirement requirement;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
*/ public class ObjectsBenchmark { private static final Integer I0 = -45; private static final Integer I1 = -1; private static final Integer I2 = 3; private static final String S0 = "3"; private static final String S1 = "Ninety five"; private static final String S2 = "44 one million"; private static final String S3 = "Lowly laundry lefties"; private static final String S4 = "89273487U#*&#";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java
private ArtifactFilter collectionFilter; private ArtifactFilter resolutionFilter; // Needs to go away private List<ResolutionListener> listeners = new ArrayList<>(); // This is like a filter but overrides all transitive versions private Map<String, Artifact> managedVersionMap; private boolean resolveRoot = true; private boolean resolveTransitively = false;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java
@CacheableTask public abstract class FindBrokenInternalLinks extends DefaultTask { private final Pattern linkPattern = Pattern.compile("<<([^,>]+)[^>]*>>"); private final Pattern linkWithHashPattern = Pattern.compile("([a-zA-Z_0-9-.]*)#(.*)"); private final Pattern javadocLinkPattern = Pattern.compile("link:\\{javadocPath\\}/(.*?\\.html)"); private final Pattern markdownLinkPattern = Pattern.compile("\\[[^]]+]\\([^)^\\\\]+\\)");
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 08:08:05 UTC 2024 - 9.4K bytes - Viewed (0)