- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 3,753 for private (0.07 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/LinkMetaData.java
*/ package gradlebuild.docs.dsl.links; import java.io.Serializable; public class LinkMetaData implements Serializable { public enum Style { Javadoc, Dsldoc } private final Style style; private final String displayName; private final String urlFragment; public LinkMetaData(Style style, String displayName, String urlFragment) { this.style = style; this.displayName = displayName;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java
} return result; } private static Set<Feature<?>> computeReserializedMultimapFeatures( Set<Feature<?>> multimapFeatures) { Set<Feature<?>> derivedFeatures = copyToSet(multimapFeatures); derivedFeatures.remove(CollectionFeature.SERIALIZABLE); derivedFeatures.remove(CollectionFeature.SERIALIZABLE_INCLUDING_VIEWS); return derivedFeatures; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 26.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
* * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") class ModelData { private final Source source; private final Model model; private String groupId; private String artifactId; private String version; /** * Creates a new container for the specified model. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
@ParametricNullness V5 value5) throws Exception; } private final ClosingFuture<V1> future1; private final ClosingFuture<V2> future2; private final ClosingFuture<V3> future3; private final ClosingFuture<V4> future4; private final ClosingFuture<V5> future5; private Combiner5( ClosingFuture<V1> future1, ClosingFuture<V2> future2,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 08 19:36:35 UTC 2024 - 98.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/PredicatesTest.java
*/ @ElementTypesAreNonnullByDefault @GwtCompatible(emulated = true) public class PredicatesTest extends TestCase { private static final Predicate<@Nullable Integer> TRUE = Predicates.alwaysTrue(); private static final Predicate<@Nullable Integer> FALSE = Predicates.alwaysFalse(); private static final Predicate<@Nullable Integer> NEVER_REACHED = new Predicate<@Nullable Integer>() { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 32.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopy.java
import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class SrvCopychunkCopy implements Encodable { private final byte[] sourceKey; private final SrvCopychunk[] chunks; /** * @param sourceKey * @param chunks * */ public SrvCopychunkCopy ( byte[] sourceKey, SrvCopychunk... chunks ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt
"org/gradle/util/**", // contains Path that clashes with `org.gradle.api.model.Path` imported above. This line should not appear before "org/gradle/api/**" ) val excludes = listOf("**/internal/**") private val includePackagePatterns: List<Pattern> by lazy { includes.map { if (it.endsWith("/**")) { Pattern.compile(it.substring(0, it.length - 3).replace("/", "\\.") + "(\\..+)?")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 23:20:08 UTC 2024 - 2.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/XIncludeAwareXmlProvider.groovy
transformer.transform(new DOMSource(root), new StreamResult(stream)) } } Document getDocument() { root } private Document parseSourceFile(File sourceFile) { documentBuilder().parse(sourceFile) } private DocumentBuilder documentBuilder() { DocumentBuilderFactory.newInstance().with { namespaceAware = true XIncludeAware = true
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenPrefixFilterFactory.java
import org.opensearch.index.analysis.AbstractTokenFilterFactory; import org.opensearch.index.analysis.Analysis; public class StopTokenPrefixFilterFactory extends AbstractTokenFilterFactory { private final String[] stopwords; private final boolean ignoreCase; public StopTokenPrefixFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
* * @author Mike Cripps */ public class StringsRepeatBenchmark { @Param({"1", "5", "25", "125"}) int count; @Param({"1", "10"}) int length; private String originalString; @BeforeExperiment void setUp() { originalString = Strings.repeat("x", length); } @Benchmark void oldRepeat(long reps) { for (int i = 0; i < reps; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Sep 17 20:24:24 UTC 2021 - 3.3K bytes - Viewed (0)