- Sort Score
- Result 10 results
- Languages All
Results 1401 - 1410 of 3,745 for eravate (0.16 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionDoc.groovy
package gradlebuild.docs.dsl.docbook.model /** * Represents the documentation model for extensions contributed by a given plugin. */ class ClassExtensionDoc { private final Set<ClassDoc> mixinClasses = [] private final Map<String, ClassDoc> extensionClasses = [:] private final String pluginId final ClassDoc targetClass final List<PropertyDoc> extraProperties = [] final List<BlockDoc> extraBlocks = []
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java
} catch (UnsupportedOperationException expected) { } } // Unconditional setCount no-ops. private void assertZeroToZero() { assertSetCount(e3(), 0); } private void assertOneToOne() { assertSetCount(e0(), 1); } private void assertThreeToThree() { initThreeCopies(); assertSetCount(e0(), 3); } @CollectionFeature.Require(SUPPORTS_ADD)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 13K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java
/** A cache of annotated objects (typically a Class or Method) to its set of annotations. */ private static final Map<AnnotatedElement, List<Annotation>> annotationCache = new HashMap<>(); private static final Map<Class<?>, TesterRequirements> classTesterRequirementsCache = new HashMap<>(); private static final Map<Method, TesterRequirements> methodTesterRequirementsCache = new HashMap<>(); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 05 22:05:05 UTC 2024 - 12.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableSet.java
@ElementTypesAreNonnullByDefault final class RegularImmutableSet<E> extends ImmutableSet.CachingAsList<E> { private static final Object[] EMPTY_ARRAY = new Object[0]; static final RegularImmutableSet<Object> EMPTY = new RegularImmutableSet<>(EMPTY_ARRAY, 0, EMPTY_ARRAY, 0); private final transient Object[] elements; private final transient int hashCode; // the same values as `elements` in hashed positions (plus nulls)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/MethodMetaData.java
*/ public class MethodMetaData extends AbstractLanguageElement implements Serializable, TypeContainer { private final String name; private final ClassMetaData ownerClass; private final List<ParameterMetaData> parameters = new ArrayList<ParameterMetaData>(); private TypeMetaData returnType; public MethodMetaData(String name, ClassMetaData ownerClass) { this.name = name;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.9K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt
updateCompatibilityDoc(latestKotlinVersions) } private fun fetchLatestKotlinVersions() = DocumentBuilderFactory.newInstance().fetchFirstAndLatestsOfEachMinor( minimumSupported.get(), "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/maven-metadata.xml" ) private fun updateProperties(latestKotlinVersions: List<String>) =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jul 23 18:27:26 UTC 2024 - 5.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt
val platform: PlatformRule = PlatformRule() @RegisterExtension val clientTestRule: OkHttpClientTestRule = OkHttpClientTestRule() private lateinit var server: MockWebServer private val handshakeCertificates = platform.localhostHandshakeCertificates() private var client: OkHttpClient = clientTestRule.newClient() @BeforeEach fun setUp(server: MockWebServer) { this.server = server } @Test
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 12.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SetTestSuiteBuilder.java
} return derivedSuites; } static class ReserializedSetGenerator<E> implements TestSetGenerator<E> { final OneSizeTestContainerGenerator<Collection<E>, E> gen; private ReserializedSetGenerator(OneSizeTestContainerGenerator<Collection<E>, E> gen) { this.gen = gen; } @Override public SampleElements<E> samples() { return gen.samples(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
int ai = arr.length; while (ai-- > 0) { arr[ai] = HEXCHARS[value & 0xF]; value >>>= 4; } return new String(arr); } private static byte B(int i) { return (byte)(i & 0xFF); } private static short S(int i) { return (short)(i & 0xFFFF); } public UUID(rpc.uuid_t uuid) { time_low = uuid.time_low; time_mid = uuid.time_mid;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
public static final File DEFAULT_INSTALLATION_SETTINGS_FILE = new File(System.getProperty("maven.conf"), "settings.xml"); private static final Logger LOGGER = LoggerFactory.getLogger(SettingsXmlConfigurationProcessor.class); private final SettingsBuilder settingsBuilder; private final SettingsDecrypter settingsDecrypter; @Inject
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0)