Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 373 for data3 (0.01 seconds)

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

  1. .teamcity/scripts/update_wrapper_and_create_pr.sh

    post() {
        local endpoint="$1"
        local data="$2"
    
        local response=$(curl -X POST \
            -H "Authorization: token $GITHUB_TOKEN" \
            -H "Accept: application/vnd.github.v3+json" \
            -H "Content-Type: application/json" \
            "https://api.github.com/repos/gradle/gradle$endpoint" \
            -d "$data" \
            -w "\n%{http_code}" \
            2>/dev/null)
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jul 29 03:20:20 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

        @VisibleForTesting
        data class AcceptedApiChange(
            val type: String?,
            val member: String?,
            val acceptation: String?,
            val changes: List<String>?
        ) {
            override fun toString(): String = "Type: '$type', Member: '$member'"
        }
    
        @VisibleForTesting
        data class AcceptedApiChanges(
            val acceptedApiChanges: List<AcceptedApiChange>?
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jun 04 14:00:46 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  3. src/main/config/openapi/openapi-user.yaml

                        example: ["aaa"]
                      related_contents:
                        type: array
                        items:
                          type: string
                        example: []
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            filetype:
                              type: string
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

        }
    
        /**
         * Extracts the underlying data map from a parameter map.
         * If the provided map is a ParamMap instance, returns its parent map.
         * Otherwise, returns the map as-is.
         *
         * @param params the parameter map to extract data from
         * @return the underlying data map
         */
        protected static Map<String, Object> getDataMap(final Map<String, Object> params) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            assertEquals(10000, indexUpdateCallback.maxDocumentCacheSize);
        }
    
        @Test
        public void test_store_withValidData() {
            // Prepare test data
            DataStoreParams paramMap = new DataStoreParams();
            Map<String, Object> dataMap = new HashMap<>();
            dataMap.put("url", "http://example.com/test");
            dataMap.put("title", "Test Document");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.7K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                                <c:forEach var="data" varStatus="s"
                                                           items="${searchLogItems}">
                                                    <c:if test="${!logType.endsWith('_agg')}">
                                                        <tr
                                                                data-href="${contextPath}/admin/searchlog/details/4/${f:u(logType)}/${f:u(data.id)}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 16.2K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        fun asConfigurationId(model: CIBuildModel): String
    
        fun asName(): String
    
        fun channel(): String
    }
    
    data class PerformanceTestPartialTrigger(
        val triggerName: String,
        val triggerId: String,
        val dependencies: List<PerformanceTestCoverage>,
    )
    
    data class PerformanceTestCoverage(
        private val uuid: Int,
        override val type: PerformanceTestType,
        override val os: Os,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java

        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asHtml(path_AdminDict_AdminDictJsp).renderWith(data -> {
                final DictionaryFile<? extends DictionaryItem>[] dictFiles = dictionaryManager.getDictionaryFiles();
                RenderDataUtil.register(data, "dictFiles", dictFiles);
            });
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/BadWordTests.java

            String body = response.getBody().asString();
            assertTrue(body != null, "CSV response should not be null");
            // CSV should contain the test data
            assertTrue(body.contains(NAME_PREFIX) || body.isEmpty(), "CSV should contain test data or be empty");
        }
    
        @Test
        void testUploadCsv_ok() {
            // Create CSV content
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/role/admin_role_details.jsp

                                    <c:if test="${editable}">
                                        <button type="button" class="btn btn-danger" name="delete"
                                                data-toggle="modal" data-target="#confirmToDelete"
                                                value="<la:message key="labels.crud_button_delete" />">
                                            <i class="fa fa-trash" aria-hidden="true"></i>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7K bytes
    - Click Count (0)
Back to Top