- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 3,630 for atrule (0.17 sec)
-
.github/ISSUE_TEMPLATE/11-language-change.yml
validations: required: true - type: textarea id: proposal attributes: label: "Proposal" description: "What is the proposed change? Who does this proposal help, and why? Please describe as precisely as possible the change to the language." validations: required: true - type: textarea id: language-spec-changes attributes:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 19:02:29 UTC 2024 - 4.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java
// v1-->v2 graph.addEdge(v1, v2, new MetadataGraphEdge("1.1", true, null, null, 2, 1)); graph.addEdge(v1, v2, new MetadataGraphEdge("1.2", true, null, null, 2, 2)); // v1-->v3 graph.addEdge(v1, v3, new MetadataGraphEdge("1.1", true, null, null, 2, 1)); graph.addEdge(v1, v3, new MetadataGraphEdge("1.2", true, null, null, 4, 2)); // v3-->v4
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.7K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/tflite-other.md
installed from options: - source - binary validations: required: true - type: input id: tfversion attributes: label: Tensorflow Version description: placeholder: ex,. tf 2.8 validations: required: true - type: dropdown id: Code attributes: label: Custom Code description: options: - "Yes" - "No" validations: required: true - type: input id: OS attributes: label: OS Platform and Distribution
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Dec 29 22:28:29 UTC 2022 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
groupName = ( ( src[ srcIndex + 16 ] & 0x80 ) == 0x80 ) ? true : false; ownerNodeType = ( src[ srcIndex + 16 ] & 0x60 ) >> 5; isBeingDeleted = ( ( src[ srcIndex + 16 ] & 0x10 ) == 0x10 ) ? true : false; isInConflict = ( ( src[ srcIndex + 16 ] & 0x08 ) == 0x08 ) ? true : false; isActive = ( ( src[ srcIndex + 16 ] & 0x04 ) == 0x04 ) ? true : false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java
SettableFuture<Object> async = SettableFuture.create(); async.cancel(true); assertFalse(async.set(42)); } public void testCancel_multipleBeforeSetFuture_noInterruptFirst() throws Exception { SettableFuture<Object> async = SettableFuture.create(); async.cancel(false); async.cancel(true); SettableFuture<Object> inner = SettableFuture.create(); assertFalse(async.setFuture(inner));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 7.3K bytes - Viewed (0) -
tests/test_tutorial/test_sql_databases/test_tutorial001.py
], ) def get_client(request: pytest.FixtureRequest): clear_sqlmodel() # TODO: remove when updating SQL tutorial to use new lifespan API with warnings.catch_warnings(record=True): warnings.simplefilter("always") mod = importlib.import_module(f"docs_src.sql_databases.{request.param}") clear_sqlmodel() importlib.reload(mod) mod.sqlite_url = "sqlite://"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 14.8K bytes - Viewed (0) -
cmd/object-api-utils_test.go
// passing in valid bucket names. {"lol", true}, {"1-this-is-valid", true}, {"1-this-too-is-valid-1", true}, {"this.works.too.1", true}, {"1234567", true}, {"123", true}, {"s3-eu-west-1.amazonaws.com", true}, {"ideas-are-more-powerful-than-guns", true}, {"testbucket", true}, {"1bucket", true}, {"bucket1", true}, {"a.b", true}, {"ab.a.bc", true}, // cases for which test should fail.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ObjectUtilTest.java
assertThat(ObjectUtil.equals(null, ""), is(false)); assertThat(ObjectUtil.equals("", null), is(false)); assertThat(ObjectUtil.equals("", ""), is(true)); assertThat(ObjectUtil.equals(Boolean.TRUE, null), is(false)); assertThat(ObjectUtil.equals(Boolean.TRUE, "true"), is(false)); assertThat(ObjectUtil.equals(Boolean.TRUE, Boolean.TRUE), is(true));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/ConcurrencyTest.java
*/ @Override public void run () { try ( SmbFileOutputStream out = this.file.openOutputStream(true, SmbConstants.FILE_NO_SHARE) ) { out.write(0xAA); this.writeCount.incrementAndGet(); this.completed = true; } catch ( IOException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:40:50 UTC 2021 - 17.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/HashBasedTableRowTest.java
import com.google.common.collect.TableCollectionTest.RowTests; @GwtCompatible @ElementTypesAreNonnullByDefault public class HashBasedTableRowTest extends RowTests { public HashBasedTableRowTest() { super(false, true, true, true, true); } @Override Table<Character, String, Integer> makeTable() { return HashBasedTable.create(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 1K bytes - Viewed (0)