Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for flat (0.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

                if (!(value instanceof Double)) {
                    return (T) Double.valueOf(value.toString());
                }
            } else if (clazz.isAssignableFrom(Float.class)) {
                if (!(value instanceof Float)) {
                    return (T) Float.valueOf(value.toString());
                }
            } else if (clazz.isAssignableFrom(Boolean.class) && !(value instanceof Boolean)) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. apache-maven/pom.xml

                </configuration>
              </execution>
              <execution>
                <id>fat-bom</id>
                <goals>
                  <goal>build-bom</goal>
                </goals>
                <configuration>
                  <bomClassifier>fat</bomClassifier>
                  <bomName>Maven Dependencies Fat BOM</bomName>
                  <bomDescription>Bill Of Materials for Apache Maven - All dependencies</bomDescription>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Sep 06 21:30:13 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

        public static final String SMB_OWNER_ATTRIBUTES = "smbOwnerAttributes";
    
        /** Character set used for encoding SMB content. */
        protected String charset = Constants.UTF_8;
    
        /** Flag indicating whether to resolve SIDs to names. */
        protected boolean resolveSids = true;
    
        /** Helper for content length operations. */
        @Resource
        protected ContentLengthHelper contentLengthHelper;
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    from pydantic import BaseModel
    
    class Item(BaseModel):
        name: str
        price: Optional[float] = None
        owner_ids: Optional[List[int]] = None
    
    app = FastAPI()
    
    @app.get("/items/invalidnone", response_model=Item)
    def get_invalid_none():
        if flag:
            return {"name": "foo"}
        # if flag is False, at this point the function will implicitly return None
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top