- Sort Score
- Result 10 results
- Languages All
Results 1091 - 1100 of 3,853 for atrule (0.06 sec)
-
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilderTest.groovy
_ * docModel.isKnownType('org.gradle.ExtensionA1') >> true _ * docModel.getClassDoc('org.gradle.ExtensionA2') >> extensionA2 _ * docModel.isKnownType('org.gradle.ExtensionA2') >> true _ * docModel.getClassDoc('org.gradle.ExtensionB') >> extensionB _ * docModel.isKnownType('org.gradle.ExtensionB') >> true def content = parse('''<section>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 7.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractNavigableMap.java
} @Override @CheckForNull public Entry<K, V> floorEntry(@ParametricNullness K key) { return headMap(key, true).lastEntry(); } @Override @CheckForNull public Entry<K, V> ceilingEntry(@ParametricNullness K key) { return tailMap(key, true).firstEntry(); } @Override @CheckForNull public Entry<K, V> higherEntry(@ParametricNullness K key) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 15 18:11:44 UTC 2023 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ClassTraversalTest.java
assertThat(packageName, packageName.startsWith("junit") || packageName.startsWith("org.junit") || packageName.startsWith("org.hamcrest"), is(true)); count++; }); assertTrue(count > 0); } /** * @throws Exception */ @Test public void testForEachJarFile_withPrefix() throws Exception {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.1K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/StandardMutableNetwork.java
@Override @CanIgnoreReturnValue public boolean addNode(N node) { checkNotNull(node, "node"); if (containsNode(node)) { return false; } addNodeInternal(node); return true; } /** * Adds {@code node} to the graph and returns the associated {@link NetworkConnections}. * * @throws IllegalStateException if {@code node} is already present */ @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 5.7K bytes - Viewed (0) -
cmd/tier-sweeper.go
delTier := false switch { case !os.Versioned, os.Suspended: // 1, 2.a, 2.b delTier = true case os.Versioned && os.VersionID != "": // 3.a delTier = true } if delTier { return jentry{ ObjName: os.RemoteObject, VersionID: os.TransitionVersionID, TierName: os.TransitionTier, }, true } return jentry{}, false }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Apr 17 05:09:58 UTC 2024 - 4.7K bytes - Viewed (0) -
internal/crypto/sse.go
} // IsRequested returns true and the SSE Type if the HTTP headers // indicate that some form server-side encryption is requested. // // If no SSE headers are present then IsRequested returns false // and no Type. func IsRequested(h http.Header) (Type, bool) { switch { case S3.IsRequested(h): return S3, true case S3KMS.IsRequested(h): return S3KMS, true case SSEC.IsRequested(h): return SSEC, true
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 30 15:26:43 UTC 2022 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
duplicateHostBhv.insertOrUpdate(duplicateHost, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final DuplicateHost duplicateHost) { duplicateHostBhv.delete(duplicateHost, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public List<DuplicateHost> getDuplicateHostList() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
relatedQueryBhv.insertOrUpdate(relatedQuery, op -> op.setRefreshPolicy(Constants.TRUE)); ComponentUtil.getRelatedQueryHelper().update(); } public void delete(final RelatedQuery relatedQuery) { relatedQueryBhv.delete(relatedQuery, op -> op.setRefreshPolicy(Constants.TRUE)); ComponentUtil.getRelatedQueryHelper().update(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java
* will be discovered using the JDK service mechanism. * * The default implementation will look for a {@code .mvn} child directory * or a {@code pom.xml} containing the {@code root="true"} attribute. * * @see DefaultRootLocator * @deprecated use {@link org.apache.maven.api.services.model.RootLocator} instead */ @Deprecated(since = "4.0.0") public interface RootLocator {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
tests/test_tutorial/test_schema_extra_example/test_tutorial005_an_py39.py
"summary": "Update Item", "operationId": "update_item_items__item_id__put", "parameters": [ { "required": True, "schema": {"title": "Item Id", "type": "integer"}, "name": "item_id", "in": "path", } ],
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 26 18:03:13 UTC 2023 - 6.8K bytes - Viewed (0)