Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 269 for Salinas (0.25 sec)

  1. .idea/codeStyles/Project.xml

        </JavaCodeStyleSettings>
        <JetCodeStyleSettings>
          <option name="PACKAGES_TO_USE_STAR_IMPORTS">
            <value>
              <package name="org.gradle.kotlin.dsl" alias="false" withSubpackages="false" />
              <package name="kotlinx.android.synthetic" alias="false" withSubpackages="true" />
            </value>
          </option>
          <option name="NAME_COUNT_TO_USE_STAR_IMPORT" value="2147483647" />
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jul 31 14:47:08 GMT 2023
    - 3.4K bytes
    - Viewed (1)
  2. docs/debugging/README.md

    host+drive+path. A MinIO host from October 2021 or later is required for full functionality. Syntax is `mc support inspect ALIAS/path/to/files`. This can for example be used to collect `xl.meta` from objects that are misbehaving. To collect `xl.meta` from a specific object, for example placed at `ALIAS/bucket/path/to/file.txt` append `/xl.meta`, for instance `mc support inspect ALIAS/bucket/path/to/file.txt/xl.meta`. All files can be collected, so this can also be used to retrieve `part.*` files, etc....
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Feb 25 01:17:53 GMT 2022
    - 8.7K bytes
    - Viewed (0)
  3. docs_src/query_params_str_validations/tutorial010.py

    from typing import Union
    
    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: Union[str, None] = Query(
            default=None,
            alias="item-query",
            title="Query string",
            description="Query string for the items to search in the database that have a good match",
            min_length=3,
            max_length=50,
            pattern="^fixedquery$",
            deprecated=True,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 24 20:26:06 GMT 2023
    - 574 bytes
    - Viewed (0)
  4. tests/test_jsonable_encoder.py

        model = ModelWithConfig(role=RoleEnum.admin)
        assert jsonable_encoder(model) == {"role": "admin"}
    
    
    def test_encode_model_with_alias_raises():
        with pytest.raises(ValidationError):
            ModelWithAlias(foo="Bar")
    
    
    def test_encode_model_with_alias():
        model = ModelWithAlias(Foo="Bar")
        assert jsonable_encoder(model) == {"Foo": "Bar"}
    
    
    def test_encode_model_with_default():
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 21:56:59 GMT 2024
    - 9K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/files/profile-compatibility-version-1.20.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    pilot:
      env:
        # 1.21 behavioral changes
        ENABLE_EXTERNAL_NAME_ALIAS: "false"
        PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING: "true"
        VERIFY_CERTIFICATE_AT_CLIENT: "false"
        ENABLE_AUTO_SNI: "false"
    
        # 1.22 behavioral changes
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 03 02:25:06 GMT 2024
    - 707 bytes
    - Viewed (0)
  6. manifests/charts/default/files/profile-compatibility-version-1.20.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    pilot:
      env:
        # 1.21 behavioral changes
        ENABLE_EXTERNAL_NAME_ALIAS: "false"
        PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING: "true"
        VERIFY_CERTIFICATE_AT_CLIENT: "false"
        ENABLE_AUTO_SNI: "false"
    
        # 1.22 behavioral changes
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 03 02:25:06 GMT 2024
    - 707 bytes
    - Viewed (0)
  7. manifests/helm-profiles/compatibility-version-1.20.yaml

    pilot:
      env:
        ENABLE_EXTERNAL_NAME_ALIAS: "false"
        PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING: "true"
        VERIFY_CERTIFICATE_AT_CLIENT: "false"
        ENABLE_AUTO_SNI: "false"
    meshConfig:
      defaultConfig:
        tracing:
          zipkin:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 16:59:18 GMT 2024
    - 300 bytes
    - Viewed (0)
  8. docs_src/query_params_str_validations/tutorial009_py310.py

    from fastapi import FastAPI, Query
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: str | None = Query(default=None, alias="item-query")):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri May 13 23:38:22 GMT 2022
    - 281 bytes
    - Viewed (0)
  9. src/builtin/builtin.go

    // distinct type, however, and not an alias for, say, int32.
    type int int
    
    // uint is an unsigned integer type that is at least 32 bits in size. It is a
    // distinct type, however, and not an alias for, say, uint32.
    type uint uint
    
    // uintptr is an integer type that is large enough to hold the bit pattern of
    // any pointer.
    type uintptr uintptr
    
    // byte is an alias for uint8 and is equivalent to uint8 in all ways. It is
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. cmd/server-startup-msg.go

    	if color.IsTerminal() && (!globalServerCtxt.Anonymous && globalAPIConfig.permitRootAccess()) {
    		logger.Info(color.Blue("\nCLI: ") + mcQuickStartGuide)
    		mcMessage := fmt.Sprintf("$ mc alias set '%s' '%s' '%s' '%s'", alias,
    			endPoint, cred.AccessKey, cred.SecretKey)
    		logger.Info(fmt.Sprintf(getFormatStr(len(mcMessage), 3), mcMessage))
    	}
    }
    
    // Get formatted disk/storage info message.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 03:07:08 GMT 2024
    - 6.8K bytes
    - Viewed (0)
Back to top