- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 159 for incrementBy (0.07 seconds)
-
src/archive/tar/testdata/gnu-incremental.tar
Joe Tsai <******@****.***> 1476838264 -0700
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Oct 19 18:07:55 GMT 2016 - 2.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
* Returns the access count. * @return The access count. */ public long getAccessCount() { return accessCount.get(); } /** * Increments the access count and returns the new value. * @return The incremented access count. */ public long incrementAndGetAccessCount() { return accessCount.incrementAndGet(); } /**Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 8.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
count = new AtomicInteger(1); } /** * Increments the reference count for this statistics object. * * @return the new reference count after incrementing */ public int increment() { return count.incrementAndGet(); } /**
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 17.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* This class extends the base CrawlerThread and provides Fess-specific functionality for * crawling and indexing documents, including incremental crawling capabilities, content * modification checking, and integration with the Fess search engine backend. * * <p>Key features include:</p> * <ul> * <li>Incremental crawling support with last-modified timestamp checking</li> * <li>Document expiration handling</li>
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 19.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
digest.sign(data, 0, data.length, mockRequest, mockResponse); verify(mockRequest).setSignSeq(100); verify(mockResponse).setSignSeq(101); // Second sign - sequence should have incremented by 2 ServerMessageBlock mockRequest2 = mock(ServerMessageBlock.class); ServerMessageBlock mockResponse2 = mock(ServerMessageBlock.class); digest.sign(data, 0, data.length, mockRequest2, mockResponse2);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
okhttp-osgi-tests/build.gradle.kts
changes with every test execution, such that running the test actually changes the test classpath itself. This means that it can"t benefit from incremental build acceleration, because on every execution it sees that the classpath has changed, and so to be safe, it needs to re-run. - This is unfortunate, because actually it would be safe to declareCreated: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Aug 01 08:17:18 GMT 2025 - 2.5K bytes - Click Count (0) -
.teamcity/pom.xml
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- https://kotlinlang.org/docs/maven.html#enable-incremental-compilation --> <kotlin.compiler.incremental>true</kotlin.compiler.incremental> </properties> <groupId>Gradle_Check</groupId> <artifactId>Gradle_Check_dsl</artifactId> <version>1.0-SNAPSHOT</version> <parent>
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 29 22:04:16 GMT 2025 - 7.4K bytes - Click Count (2) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
assertEquals(minor, artifactVersion.getMinorVersion(), parsed + "check minor version"); assertEquals(incremental, artifactVersion.getIncrementalVersion(), parsed + "check incremental version"); assertEquals(buildnumber, artifactVersion.getBuildNumber(), parsed + "check build number");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 9.6K bytes - Click Count (0) -
.github/workflows/containers.yml
- master pull_request: types: [opened, labeled, unlabeled, synchronize] permissions: contents: read env: GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" jobs: test_containers: permissions: checks: write # for actions/upload-artifact runs-on: ubuntu-latestCreated: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Nov 21 15:26:25 GMT 2025 - 872 bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/TestingCacheLoaders.java
@Override public V load(K key) { return constant; } } /** * Returns a {@code new Object()} for every request, and increments a counter for every request. * An {@code Integer} loader that returns the key for {@code load} requests, and increments the * old value on {@code reload} requests. The load counts are accessible via {@link #getLoadCount} * and {@link #getReloadCount}. */Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 10 19:54:19 GMT 2025 - 5.1K bytes - Click Count (0)