- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 3,753 for private (0.09 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
private DependencyNode dependencyNode; private ClassRealm classRealm; // calculated on-demand. private Map<String, Artifact> artifactMap; private Set<Artifact> introducedDependencyArtifacts; private String name; private String description; private String requiredMavenVersion; private String requiredJavaVersion; private Plugin plugin;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/flowcontrol/WindowCounter.kt
class WindowCounter( val streamId: Int, ) { /** The total number of bytes consumed. */ var total: Long = 0L private set /** The total number of bytes acknowledged by outgoing `WINDOW_UPDATE` frames. */ var acknowledged: Long = 0L private set val unacknowledged: Long @Synchronized get() = total - acknowledged @Synchronized fun update( total: Long = 0,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Apr 05 03:30:42 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacCredentialType.java
/** * Structure representing the PAC_CREDENTIAL_TYPE record * * @author jbbugeau */ @SuppressWarnings ( "javadoc" ) public class PacCredentialType { private static final int MINIMAL_BUFFER_SIZE = 32; private byte[] credentialType; public PacCredentialType ( byte[] data ) throws PACDecodingException { this.credentialType = data; if ( !isCredentialTypeCorrect() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java
} }; void addEntries(MoreObjects.ToStringHelper helper) {} } @Param Dataset dataset; private static final String SHORT_NAME = "userId"; private static final String LONG_NAME = "fluxCapacitorFailureRate95Percentile"; private MoreObjects.ToStringHelper newHelper() { MoreObjects.ToStringHelper helper = MoreObjects.toStringHelper("klass"); if (omitNulls) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jun 10 19:21:11 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
private static final Logger log = LoggerFactory.getLogger(Smb2CreateResponse.class); private byte oplockLevel; private byte openFlags; private int createAction; private long creationTime; private long lastAccessTime; private long lastWriteTime; private long changeTime; private long allocationSize; private long endOfFile; private int fileAttributes;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
* * @author Colin Decker */ @Immutable @ElementTypesAreNonnullByDefault final class ChecksumHashFunction extends AbstractHashFunction implements Serializable { private final ImmutableSupplier<? extends Checksum> checksumSupplier; private final int bits; private final String toString; ChecksumHashFunction( ImmutableSupplier<? extends Checksum> checksumSupplier, int bits, String toString) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:05:16 UTC 2024 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Types.java
} return false; } private static final long serialVersionUID = 0; } private static final class ParameterizedTypeImpl implements ParameterizedType, Serializable { @CheckForNull private final Type ownerType; private final ImmutableList<Type> argumentsList; private final Class<?> rawType;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
// ========= @Resource private CharMappingService charMappingService; @Resource private CharMappingPager charMappingPager; // =================================================================================== // Hook
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 19.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
@Singleton public class DefaultGraphBuilder implements GraphBuilder { private static final Logger LOGGER = LoggerFactory.getLogger(DefaultGraphBuilder.class); private final BuildResumptionDataRepository buildResumptionDataRepository; private final PomlessCollectionStrategy pomlessCollectionStrategy; private final MultiModuleCollectionStrategy multiModuleCollectionStrategy; private final RequestPomCollectionStrategy requestPomCollectionStrategy;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
private final Set<Name> inFlightLookups = new HashSet<>(); private int lport, closeTimeout; private byte[] snd_buf, rcv_buf; private DatagramSocket socket; private DatagramPacket in, out; private Map<Integer, NameServicePacket> responseTable = new HashMap<>(); private Thread thread; private int nextNameTrnId = 0; private List<ResolverType> resolveOrder = new ArrayList<>();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0)