- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 2,237 for texts (0.01 sec)
-
.gitattributes
# Auto detect text files and perform LF normalization * text=auto # Known text files *.java text *.xml text *.yml text *.md text *.sh text *.css text *.txt text # Known binary files
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Nov 04 21:50:10 UTC 2014 - 196 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java
sort(values, navigableSet.comparator()); // some tests assume SEVERAL == 3 if (values.size() >= 1) { a = values.get(0); if (values.size() >= 3) { b = values.get(1); c = values.get(2); } } } /** Resets the contents of navigableSet to have elements a, c, for the navigation tests. */ protected void resetWithHole() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/login/index.jsp
</div> </div> <input type="hidden" id="contextPath" value="${contextPath}" /> <script type="text/javascript" src="${fe:url('/js/admin/jquery-3.7.1.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/admin/popper.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/admin/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/login.js')}"></script> </body>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
viewHelper.init(); String text = "highlighted text"; String result = viewHelper.removeHighlightTag(text); assertEquals("highlighted text", result); text = "normal text"; result = viewHelper.removeHighlightTag(text); assertEquals("normal text", result); text = ""; result = viewHelper.removeHighlightTag(text); assertEquals("", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
regression-test/README.md
``` 3. Run tests using gradle ``` $ ANDROID_SDK_ROOT=/Users/myusername/Library/Android/sdk ./gradlew :regression-test:connectedCheck ... > Task :regression-test:connectedDebugAndroidTest ... 11:55:40 V/InstrumentationResultParser: Time: 13.271 11:55:40 V/InstrumentationResultParser: 11:55:40 V/InstrumentationResultParser: OK (12 tests) ...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 2.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetCountTester.java
import java.lang.reflect.Method; import java.util.List; import org.junit.Ignore; /** * Tests for {@code Multiset#count}. * * @author Jared Levy */ @GwtCompatible @Ignore("test runners must not instantiate and run this directly, only via suites we build") // @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.6K bytes - Viewed (0) -
cmd/data-usage-cache_test.go
tests := []struct { v sizeHistogramV1 want sizeHistogram }{ { v: sizeHistogramV1{0: 10, 1: 20, 2: 3}, want: sizeHistogram{0: 10, 5: 20, 6: 3}, }, { v: sizeHistogramV1{0: 10, 1: 20, 2: 3, 3: 4, 4: 5, 5: 6, 6: 7}, want: sizeHistogram{0: 10, 5: 20, 6: 3, 7: 4, 8: 5, 9: 6, 10: 7}, }, } for i, test := range tests {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Jan 13 07:51:08 UTC 2024 - 2.6K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/replication/minio-replication-node.json
"color": { "mode": "palette-classic" }, "custom": { "axisBorderShow": false, "axisCenteredZero": false, "axisColorMode": "text", "axisLabel": "", "axisPlacement": "auto", "barAlignment": 0, "drawStyle": "line", "fillOpacity": 10, "gradientMode": "none",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 04 01:46:49 UTC 2025 - 57.5K bytes - Viewed (0) -
PULL_REQUESTS_ETIQUETTE.md
3. **Testing**: - Include unit tests for new functionality or bug fixes. - Ensure existing tests pass (`make test`). - Document testing steps in the PR summary if manual testing was performed. 4. **Before Submitting**: - Run `make verify` to check formatting, linting, and tests. - Reference related issues (e.g., “Closes #1234”).
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 25 16:32:03 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
import org.mockito.junit.jupiter.MockitoExtension; /** * Comprehensive test suite for jcifs.SmbResource interface. * Tests SMB resource interface contract and functionality for CIFS/SMB protocol compliance. */ @ExtendWith(MockitoExtension.class) @DisplayName("SmbResource Interface Tests") class SmbResourceTest { @Mock private SmbResource mockResource; @Mock private SmbResourceLocator mockLocator;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0)