- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 201 for setType (0.12 sec)
-
src/test/java/jcifs/tests/EnumTest.java
try ( CloseableIterator<SmbResource> it = smbFile.children() ) { while ( it.hasNext() ) { try ( SmbResource serv = it.next() ) { System.err.println(serv.getName()); assertEquals(SmbConstants.TYPE_SERVER, serv.getType()); assertTrue(serv.isDirectory());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
public SecurityDescriptor ( byte[] buffer, int bufferIndex, int len ) throws IOException { this.decode(buffer, bufferIndex, len); } /** * @return the type */ public final int getType () { return this.type; } /** * @return the aces */ public final ACE[] getAces () { return this.aces; } /** * @return the ownerGroupSid
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenMetadata.java
protected MavenMetadata(Metadata metadata, Path path, Date timestamp) { this.metadata = metadata; this.path = path; this.timestamp = timestamp; } @Override public String getType() { return MAVEN_METADATA_XML; } @Deprecated @Override public File getFile() { return path != null ? path.toFile() : null; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
Artifact dependencyArtifact = factory.createDependencyArtifact( dependency.getGroupId(), dependency.getArtifactId(), versionRange, dependency.getType(), dependency.getClassifier(), effectiveScope, dependency.isOptional()); if (inheritedFilter != null && !inheritedFilter.include(dependencyArtifact)) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
cmd/batch-handlers.go
srcBucket := r.Source.Bucket tgtBucket := r.Target.Bucket tgtPrefix := r.Target.Prefix srcObject := srcObjInfo.Name s3Type := r.Target.Type == BatchJobReplicateResourceS3 || r.Source.Type == BatchJobReplicateResourceS3 if srcObjInfo.DeleteMarker || !srcObjInfo.VersionPurgeStatus.Empty() { if retry && !s3Type { if _, err := c.StatObject(ctx, tgtBucket, pathJoin(tgtPrefix, srcObject), miniogo.StatObjectOptions{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 18 15:32:09 UTC 2024 - 62.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
try ( SmbResource f = getDefaultShareRoot() ) { checkConnection(f); if ( f.getType() != SmbConstants.TYPE_FILESYSTEM ) { assertEquals(SmbConstants.TYPE_SHARE, f.getType()); } } } @Test public void testGetFreeSpace () throws CIFSException, MalformedURLException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
.highlightInfo(params.getHighlightInfo()).similarDocHash(params.getSimilarDocHash()) .responseFields(params.getResponseFields()).searchRequestType(params.getType()) .trackTotalHits(params.getTrackTotalHits()).minScore(params.getMinScore()).build(); }; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 06:56:21 UTC 2024 - 10.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinates.java
* a modular-<abbr>JAR</abbr> if it is intended to be placed on the module-path, * a <abbr>JAR</abbr> containing test classes, <i>etc.</i> */ @Nonnull Type getType(); /** * {@return the time at which the dependency will be used} * If may be, for example, at compile time only, at run time or at test time. */ @Nonnull DependencyScope getScope();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
for (int i = 0; i < params.size(); i++) { List<Object> newArgs = Lists.newArrayList(args); Object newArg = argGenerators.get(i).generateFresh(params.get(i).getType()); if (newArg == null || Objects.equal(args.get(i), newArg)) { if (params.get(i).getType().getRawType().isEnum()) { continue; // Nothing better we can do if it's single-value enum }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:18:12 UTC 2024 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
/** * {@inheritDoc} * * @see jcifs.smb.FileEntry#getFileIndex() */ @Override public int getFileIndex () { return 0; } @Override public int getType () { /* * 0x80000000 means hidden but SmbFile.isHidden() checks for $ at end */ switch ( this.type & 0xFFFF ) { case 1: return SmbConstants.TYPE_PRINTER;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Feb 17 09:30:57 UTC 2019 - 3.1K bytes - Viewed (0)