Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 3741 - 3750 of 5,120 for sull (0.04 seconds)

  1. src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java

            System.arraycopy(pathBytes, 0, dst, dstIndex, pathBytes.length);
            dstIndex += pathBytes.length;
            SMBUtil.writeInt2(0, dst, dstIndex);
            dstIndex += 2; // null terminator
            return dstIndex - start;
        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilderFactory.java

            return new DefaultSettingsValidator();
        }
    
        /**
         * Creates a new settings builder instance.
         *
         * @return The new settings builder instance, never {@code null}.
         */
        public DefaultSettingsBuilder newInstance() {
            return new DefaultSettingsBuilder(
                    new DefaultSettingsReader(), new DefaultSettingsWriter(), new DefaultSettingsValidator());
        }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  3. fastapi/security/open_id_connect_url.py

        """
        OpenID Connect authentication class. An instance of it would be used as a
        dependency.
    
        **Warning**: this is only a stub to connect the components with OpenAPI in FastAPI,
        but it doesn't implement the full OpenIdConnect scheme, for example, it doesn't use
        the OpenIDConnect URL. You would need to subclass it and implement it in your
        code.
        """
    
        def __init__(
            self,
            *,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 16 10:16:48 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  4. tests/test_tutorial/test_additional_responses/test_tutorial002.py

                                {
                                    "required": False,
                                    "schema": {
                                        "anyOf": [{"type": "boolean"}, {"type": "null"}],
                                        "title": "Img",
                                    },
                                    "name": "img",
                                    "in": "query",
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 10:53:47 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/RepositoriesSetupPlugin.java

         */
        public static void configureRepositories(Project project) {
            RepositoryHandler repos = project.getRepositories();
            if (System.getProperty("repos.mavenLocal") != null) {
                // with -Drepos.mavenLocal=true we can force checking the local .m2 repo which is
                // useful for development ie. bwc tests where we install stuff in the local repository
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.7K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/UpdateShasTask.java

        public UpdateShasTask() {
            setDescription("Updates the sha files for the dependencyLicenses check");
            setOnlyIf(element -> parentTask.get().getLicensesDir() != null);
        }
    
        @TaskAction
        public void updateShas() throws NoSuchAlgorithmException, IOException {
            Set<File> shaFiles = parentTask.get().getShaFiles();
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  7. docs/ko/docs/how-to/separate-openapi-schemas.md

    ### 출력 응답 데이터용 모델 { #model-for-output-response-data }
    
    문서에서 직접 동작시켜 응답을 확인해 보면, 코드가 `description` 필드 중 하나에 아무것도 추가하지 않았더라도 JSON 응답에는 기본값(`null`)이 포함되어 있습니다:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image02.png">
    </div>
    
    이는 해당 필드가 **항상 값을 가진다는 것**을 의미합니다. 다만 그 값이 때로는 `None`(JSON에서는 `null`)일 수 있습니다.
    
    즉, API를 사용하는 클라이언트는 값이 존재하는지 여부를 확인할 필요가 없고, **필드가 항상 존재한다고 가정**할 수 있습니다. 다만 어떤 경우에는 기본값 `None`이 들어갑니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:57:01 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/suggest/util/ScrollOperationHelper.java

                    .setSize(pageSize)
                    .execute()
                    .actionGet(settings.getSearchTimeout());
            String scrollId = response.getScrollId();
    
            try {
                while (scrollId != null) {
                    final SearchHit[] hits = response.getHits().getHits();
                    if (hits.length == 0) {
                        break;
                    }
                    for (final SearchHit hit : hits) {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  9. .github/ISSUE_TEMPLATE/tflite-in-play-services.md

    the problem.
    
    **Any other info / logs**
    Include any logs or source code that would be helpful to diagnose the problem.
    If including tracebacks, please include the full traceback. Large logs and files
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jun 15 03:35:58 GMT 2022
    - 880 bytes
    - Click Count (0)
  10. src/test/java/jcifs/MsrpcDfsRootEnumTest.java

            assertEquals(8, entries[0].getType()); // TYPE_SHARE constant value
        }
    
        @Test
        @DisplayName("getEntries should handle null DFS names gracefully")
        void testGetEntries_nullNames() throws Exception {
            // Create array with null name entries
            netdfs.DfsEnumArray200 arrayWithNulls = new netdfs.DfsEnumArray200();
            arrayWithNulls.count = 2;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12.9K bytes
    - Click Count (0)
Back to Top