Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 277 for checkOn (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .teamcity/src/main/kotlin/projects/GradleBuildToolRootProject.kt

    import java.io.File
    
    class GradleBuildToolRootProject(
        branch: VersionedSettingsBranch,
    ) : Project({
            val model =
                CIBuildModel(
                    projectId = "Check",
                    branch = branch,
                    buildScanTags = listOf("Check"),
                    subprojects = JsonBasedGradleSubprojectProvider(File("./subprojects.json")),
                )
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 10:41:06 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java

                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        @Test
        public void test_serialVersionUID() {
            // Test that serialVersionUID is defined (by checking serializability)
            DictionaryException exception = new DictionaryException("Serialization test");
    
            assertTrue(exception instanceof java.io.Serializable);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  3. build-logic-commons/build.gradle.kts

     * limitations under the License.
     */
    
    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 04:30:54 GMT 2025
    - 800 bytes
    - Click Count (0)
  4. .github/workflows/release-notes.yml

    name: Check closed issue release notes
    
    on:
      issues:
        types: [ closed ]
    
    permissions: {}
    
    jobs:
      check_release_notes:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that release-note-worthy issues have a PR with release notes attached
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jul 04 15:13:53 GMT 2024
    - 344 bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

                return StringUtil.EMPTY;
            }
            return input;
        }
    
        /**
         * Checks if this item has been updated.
         * @return true if updated, false otherwise
         */
        public boolean isUpdated() {
            return newInput != null;
        }
    
        /**
         * Checks if this item has been deleted.
         * @return true if deleted, false otherwise
         */
        public boolean isDeleted() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/storage/StorageClient.java

         */
        void setObjectTags(String objectName, Map<String, String> tags);
    
        /**
         * Ensures the bucket exists, creating it if necessary.
         */
        void ensureBucketExists();
    
        /**
         * Checks if storage is properly configured and accessible.
         *
         * @return true if storage is available
         */
        boolean isAvailable();
    
        /**
         * Closes the client and releases resources.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

                return StringUtil.EMPTY;
            }
            return input;
        }
    
        /**
         * Checks if the item has been updated.
         *
         * @return true if the item has been updated, false otherwise.
         */
        public boolean isUpdated() {
            return newInput != null;
        }
    
        /**
         * Checks if the item has been marked for deletion.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  8. .github/workflows/pull-metadata.yml

    name: Check pulls metadata
    
    on:
      pull_request_target:
        types: [ closed, unlabeled, milestoned, demilestoned ]
    
    permissions: {}
    
    jobs:
      check_pull_metadata:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Check that PRs have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/pull-metadata.ts
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 11 09:00:56 GMT 2025
    - 480 bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

            // Test that the exception is serializable
            StorageException exception = new StorageException("Test serialization");
    
            // Verify that the exception is serializable by checking it extends RuntimeException
            // which implements Serializable
            assertTrue(exception instanceof java.io.Serializable);
        }
    
        @Test
        public void test_longMessageHandling() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/orig/view/chat/chat.jsp

    										<div class="filter-dropdown-list">
    											<c:forEach var="item" items="${labelTypeItems}">
    											<label class="filter-check-item">
    												<input type="checkbox" class="filter-check" data-filter-type="label" data-filter-value="${f:h(item.value)}" />
    												<span class="filter-check-label">${f:h(item.label)}</span>
    											</label>
    											</c:forEach>
    										</div>
    										<div class="filter-dropdown-footer">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
Back to Top