- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 315 for tantes (0.03 sec)
-
guava/src/com/google/common/collect/ArrayTable.java
size(), Spliterator.ORDERED | Spliterator.NONNULL | Spliterator.DISTINCT, this::getCell); } private Cell<R, C, @Nullable V> getCell(int index) { return new Tables.AbstractCell<R, C, @Nullable V>() { final int rowIndex = index / columnList.size(); final int columnIndex = index % columnList.size(); @Override public R getRowKey() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 19:39:21 UTC 2025 - 26.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
resp.setContentType(mimeMap.getMimeType(type)); } resp.setHeader("Content-Length", file.length() + ""); resp.setHeader("Accept-Ranges", "Bytes"); while ((n = in.read(buf)) != -1) { out.write(buf, 0, n); } } // IOException handling is done by calling code } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
tests/update_test.go
} else if users[0].UpdatedAt.IsZero() { t.Fatalf("user's updated at should not zero, %v", users[0].UpdatedAt) } if rowsAffected := DB.Model(&User{}).Clauses(clause.From{Tables: []clause.Table{{Name: "accounts"}}}).Where("accounts.user_id = users.id AND accounts.number = ? AND accounts.deleted_at IS NULL", users[0].Account.Number).Update("name", "franco").RowsAffected; rowsAffected != 1 {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 30.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* <li>If this field's value == null because it was associated with our thread and was * cleared, we know that we're not executing inline any more * </ul> * * All the states where thread != currentThread are identical for our purposes, and so even * though it's racy, we don't care which of those values we get, so no need to synchronize. */ @LazyInit @Nullable Thread thread;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 22.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
// versions. We just clobbered the selected version above. (why? I have no idea.) // So since we are here and this is ranges we must go figure out the version (for a // third time...) if (resetArtifact.getVersion() == null && resetArtifact.getVersionRange() != null) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 36.5K bytes - Viewed (0) -
tests/sql_builder_test.go
} } func TestFromWithJoins(t *testing.T) { var result User newDB := DB.Session(&gorm.Session{NewDB: true, DryRun: true}).Table("users") newDB.Clauses( clause.From{ Tables: []clause.Table{{Name: "users"}}, Joins: []clause.Join{ { Table: clause.Table{Name: "companies", Raw: false}, ON: clause.Where{ Exprs: []clause.Expression{ clause.Eq{
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
* and user information logs. It supports different aggregation types for * analytics and reporting purposes. */ public class SearchLogService { /** Date format pattern for parsing time ranges. */ private static final String YYYY_MM_DD_HH_MM = "yyyy-MM-dd HH:mm"; /** Field name for count values in aggregation results. */ private static final String COUNT = "count";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* this fluent iterable supports it. Note that it is <i>not</i> possible to delete the last * skipped element by immediately calling {@code remove()} on the returned fluent iterable's * iterator, as the {@code Iterator} contract states that a call to {@code * remove()} before a * call to {@code next()} will throw an {@link IllegalStateException}. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#skip} (same). */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/FluentIterable.java
* this fluent iterable supports it. Note that it is <i>not</i> possible to delete the last * skipped element by immediately calling {@code remove()} on the returned fluent iterable's * iterator, as the {@code Iterator} contract states that a call to {@code * remove()} before a * call to {@code next()} will throw an {@link IllegalStateException}. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#skip} (same). */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
* <li>System configuration property keys</li> * <li>Default values for crawling and indexing operations</li> * <li>User agent strings and patterns for web crawling</li> * <li>Status constants for job execution and system states</li> * <li>Field names and keys used throughout the application</li> * <li>Date/time format patterns</li> * <li>Authentication type identifiers</li> * <li>Reserved words and regex patterns for query processing</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0)