Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 180 for doc (2.25 sec)

  1. src/cmd/asm/doc.go

    the main variation having to do with addressing modes. Input is
    run through a simplified C preprocessor that implements #include,
    #define, #ifdef/endif, but not #if or ##.
    
    For more information, see https://golang.org/doc/asm.
    */
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    not be referenced from Go code; static functions are permitted.
    
    See $GOROOT/cmd/cgo/internal/teststdio and $GOROOT/misc/cgo/gmp for examples. See
    "C? Go? Cgo!" for an introduction to using cgo:
    https://golang.org/doc/articles/c_go_cgo.html.
    
    CFLAGS, CPPFLAGS, CXXFLAGS, FFLAGS and LDFLAGS may be defined with pseudo
    #cgo directives within these comments to tweak the behavior of the C, C++
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess/doc.json

          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                    docList.stream().forEach(doc -> {
                        if (!thumbnailManager.offer(doc)) {
                            if (logger.isDebugEnabled()) {
                                logger.debug("Removing {}={} from doc[{}]", thumbnailField, doc.get(thumbnailField),
                                        doc.get(fessConfig.getIndexFieldUrl()));
                            }
                            doc.remove(thumbnailField);
                        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.6K bytes
    - Viewed (1)
  7. fastapi/security/api_key.py

        ```
        """
    
        def __init__(
            self,
            *,
            name: Annotated[
                str,
                Doc("Query parameter name."),
            ],
            scheme_name: Annotated[
                Optional[str],
                Doc(
                    """
                    Security scheme name.
    
                    It will be included in the generated OpenAPI (e.g. visible at `/docs`).
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 23 22:29:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/DocumentUtil.java

        public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz, final T defaultValue) {
            final T value = getValue(doc, key, clazz);
            if (value == null) {
                return defaultValue;
            }
            return value;
        }
    
        @SuppressWarnings("unchecked")
        public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

        }
    
        public void test_integer() {
            Map<String, Object> doc = new HashMap<>();
    
            int expected3 = 999;
            doc.put("key3", expected3);
            assertEquals(expected3, DocumentUtil.getValue(doc, "key3", Integer.class));
    
            doc.put("key9", new ArrayList<Integer>(Arrays.asList(777, 888, 999)));
            assertEquals(777, DocumentUtil.getValue(doc, "key9", Integer.class));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            }
    
            Map<String, Object> doc = null;
            try {
                doc = searchHelper.getDocumentByDocId(form.docId,
                        new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldConfigId() }, getUserBean()).orElse(null);
            } catch (final Exception e) {
                logger.warn("Failed to request: {}", form.docId, e);
            }
            if (doc == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
Back to top