- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 385 for drives (0.04 sec)
-
ci/official/envs/windows_x86_2022
TFCI_WHL_BAZEL_TEST_ENABLE=0 TFCI_WHL_SIZE_LIMIT=450M TFCI_WHL_SIZE_LIMIT_ENABLE=1 TFCI_WHL_IMPORT_TEST_ENABLE=1 TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS="" # Used to simulate a T:\ drive within the container, to a limited extent, # via a symlink. # Helpful since the internal CI utilizes a T:\ drive, part of which is mounted # to the container, and would result in C:\<path> != T:\<path> mismatches, # when using variables like `TFCI_OUTPUT_DIR` in `docker exec commands,
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Mar 19 00:58:54 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
// Then assertFalse(Arrays.equals(signingKey1, signingKey2), "Different session keys should produce different derived keys"); } @Test @DisplayName("Should derive unique keys for different preauth values") void testDeriveKeys_UniquePreauthValues() { // Given byte[] preauth1 = new byte[64];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
cmd/sftp-server-driver.go
Klaus Post <******@****.***> 1739205349 -0800
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 10 16:35:49 UTC 2025 - 11.6K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
# Symlink a directory, to have it pretend be the T:\ drive. # This drive letter is used by internal CI, # and part of it is mounted to the container during the container's creation. # # While the mount argument (`-v host_path:container_path`) still requires # `container_path` to be a legitimate C:\ path, in this case, 'C:\drive_t', # this symlink does allow for the convenience of passing unedited paths
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
assertEquals(10, ndrBuffer.getLength()); ndrBuffer.setLength(20); assertEquals(20, ndrBuffer.getLength()); // Test with derived buffer NdrBuffer derived = ndrBuffer.derive(0); derived.setLength(5); assertEquals(5, derived.getLength()); assertEquals(5, ndrBuffer.getLength()); // Should affect original's deferred length } @Test void testAdvance() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
api/go1.8.txt
pkg database/sql/driver, type IsolationLevel int pkg database/sql/driver, type NamedValue struct pkg database/sql/driver, type NamedValue struct, Name string pkg database/sql/driver, type NamedValue struct, Ordinal int pkg database/sql/driver, type NamedValue struct, Value Value pkg database/sql/driver, type Pinger interface { Ping }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Dec 21 05:25:57 UTC 2016 - 16.3K bytes - Viewed (0) -
api/next/67546.txt
pkg database/sql/driver, type RowsColumnScanner interface { Close, Columns, Next, ScanColumn } #67546 pkg database/sql/driver, type RowsColumnScanner interface, Close() error #67546 pkg database/sql/driver, type RowsColumnScanner interface, Columns() []string #67546 pkg database/sql/driver, type RowsColumnScanner interface, Next([]Value) error #67546 pkg database/sql/driver, type RowsColumnScanner interface, ScanColumn(interface{}, int) error #67546
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Aug 11 21:27:36 UTC 2025 - 454 bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ClosingFuture.java
logger.get().log(FINER, "closing {0}", this); closeables.close(); } private <U extends @Nullable Object> ClosingFuture<U> derive(FluentFuture<U> future) { ClosingFuture<U> derived = new ClosingFuture<>(future); becomeSubsumedInto(derived.closeables); return derived; } private void becomeSubsumedInto(CloseableList otherCloseables) { checkAndUpdateState(OPEN, SUBSUMED);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 98.1K bytes - Viewed (0) -
tests/tests_test.go
//go:debug x509negativeserial=1 package tests_test import ( "log" "math/rand" "os" "path/filepath" "time" "gorm.io/driver/gaussdb" "gorm.io/driver/mysql" "gorm.io/driver/postgres" "gorm.io/driver/sqlite" "gorm.io/driver/sqlserver" "gorm.io/gorm" "gorm.io/gorm/logger" . "gorm.io/gorm/utils/tests" ) var DB *gorm.DB var (
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 3.7K bytes - Viewed (0) -
tests/scanner_valuer_test.go
package tests_test import ( "context" "database/sql" "database/sql/driver" "encoding/json" "errors" "fmt" "reflect" "regexp" "strconv" "testing" "time" "gorm.io/gorm" "gorm.io/gorm/clause" . "gorm.io/gorm/utils/tests" ) func TestScannerValuer(t *testing.T) { DB.Migrator().DropTable(&ScannerValuerStruct{}) if err := DB.Migrator().AutoMigrate(&ScannerValuerStruct{}); err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jun 07 07:02:07 UTC 2023 - 10.6K bytes - Viewed (0)