Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 402 for Ref (0.01 seconds)

  1. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			<AppenderRef ref="AppFile" />
    			<AppenderRef ref="LogNotification" />
    		</Logger>
    		<Logger name="org.dbflute" additivity="false" level="${log.level}">
    			<AppenderRef ref="AppFile" />
    			<AppenderRef ref="LogNotification" />
    		</Logger>
    		<Logger name="org.lastaflute" additivity="false" level="${log.level}">
    			<AppenderRef ref="AppFile" />
    			<AppenderRef ref="LogNotification" />
    		</Logger>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  2. lib/wasm/wasm_exec.js

    					},
    
    					// func valueIndex(v ref, i int) ref
    					"syscall/js.valueIndex": (sp) => {
    						sp >>>= 0;
    						storeValue(sp + 24, Reflect.get(loadValue(sp + 8), getInt64(sp + 16)));
    					},
    
    					// valueSetIndex(v ref, i int, x ref)
    					"syscall/js.valueSetIndex": (sp) => {
    						sp >>>= 0;
    						Reflect.set(loadValue(sp + 8), getInt64(sp + 16), loadValue(sp + 24));
    					},
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Sun Dec 08 15:34:47 GMT 2024
    - 16.6K bytes
    - Click Count (0)
  3. tests/test_schema_ref_pydantic_v2.py

    def get_client():
        app = FastAPI()
    
        class ModelWithRef(BaseModel):
            ref: str = Field(validation_alias="$ref", serialization_alias="$ref")
            model_config = ConfigDict(validate_by_alias=True, serialize_by_alias=True)
    
        @app.get("/", response_model=ModelWithRef)
        async def read_root() -> Any:
            return {"$ref": "some-ref"}
    
        client = TestClient(app)
        return client
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Dec 20 15:55:38 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  4. tests/test_sub_callbacks.py

                                    "content": {
                                        "application/json": {
                                            "schema": {
                                                "$ref": "#/components/schemas/Invoice"
                                            }
                                        }
                                    },
                                    "required": True,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  5. tests/test_schema_extra_examples.py

                            "requestBody": {
                                "content": {
                                    "application/json": {
                                        "schema": {"$ref": "#/components/schemas/Item"}
                                    }
                                },
                                "required": True,
                            },
                            "responses": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 34.7K bytes
    - Click Count (0)
  6. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc.xml

        <!--<ruleset-ref path='rulesets/basic.xml'>-->
            <!--<exclude name='ExplicitHashSetInstantiation'/>-->
            <!--<exclude name='ExplicitCallToAndMethod'/>-->
            <!--<exclude name='ExplicitCallToOrMethod'/>-->
        <!--</ruleset-ref>-->
        <ruleset-ref path='rulesets/braces.xml'/>
        <ruleset-ref path='rulesets/imports.xml'>
            <exclude name="ImportFromSunPackages"/>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Click Count (0)
  7. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml

        <!--<ruleset-ref path='rulesets/basic.xml'>-->
            <!--<exclude name='ExplicitHashSetInstantiation'/>-->
            <!--<exclude name='ExplicitCallToAndMethod'/>-->
            <!--<exclude name='ExplicitCallToOrMethod'/>-->
        <!--</ruleset-ref>-->
        <ruleset-ref path='rulesets/braces.xml'/>
        <ruleset-ref path='rulesets/imports.xml'>
            <exclude name="ImportFromSunPackages"/>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.3K bytes
    - Click Count (0)
  8. tests/test_response_by_alias.py

                                    "description": "Successful Response",
                                    "content": {
                                        "application/json": {
                                            "schema": {"$ref": "#/components/schemas/Model"}
                                        }
                                    },
                                }
                            },
                        }
                    },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  9. tests/test_dependency_duplicates.py

                            "required": ["item", "item2"],
                            "type": "object",
                            "properties": {
                                "item": {"$ref": "#/components/schemas/Item"},
                                "item2": {"$ref": "#/components/schemas/Item"},
                            },
                        },
                        "HTTPValidationError": {
                            "title": "HTTPValidationError",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  10. tests/test_tuples.py

                                            "type": "array",
                                            "prefixItems": [
                                                {"$ref": "#/components/schemas/Coordinate"},
                                                {"$ref": "#/components/schemas/Coordinate"},
                                            ],
                                        }
                                    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 10.8K bytes
    - Click Count (0)
Back to Top