Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,522 for mode_ (0.06 sec)

  1. pkg/kubeapiserver/authorizer/modes/modes.go

    limitations under the License.
    */
    
    package modes
    
    import "k8s.io/apimachinery/pkg/util/sets"
    
    const (
    	// ModeAlwaysAllow is the mode to set all requests as authorized
    	ModeAlwaysAllow string = "AlwaysAllow"
    	// ModeAlwaysDeny is the mode to set no requests as authorized
    	ModeAlwaysDeny string = "AlwaysDeny"
    	// ModeABAC is the mode to use Attribute Based Access Control to authorize
    	ModeABAC string = "ABAC"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 05 01:22:41 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/response-model.md

    But if we use the same model for another *path operation*, we could be sending our user's passwords to every client.
    
    !!! danger
        Never store the plain password of a user or send it in a response like this, unless you know all the caveats and you know what you are doing.
    
    ## Add an output model
    
    We can instead create an input model with the plaintext password and an output model without it:
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/mdo/model.vm

      specific language governing permissions and limitations
      under the License.
    *#
    #parse ( "common.vm" )
    #
    #set ( $package = "${packageModelV4}" )
    #set ( $root = $model.getClass( $model.getRoot($version), $version ) )
    #foreach ( $class in $model.allClasses )
      #set ( $ancestors = $Helper.ancestors( $class ) )
      #set ( $allFields = [] )
      #set ( $inheritedFields = [] )
      #foreach ( $cl in $ancestors )
        #if ( $cl != $class )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/mdo/model-version.vm

    import org.apache.maven.api.xml.XmlNode;
    #foreach ( $class in $model.allClasses )
    import ${packageModelV4}.${class.Name};
    #end
    
    @Generated
    public class ${className} {
    
        public String getModelVersion(${root.name} model) {
            Objects.requireNonNull(model, "model cannot be null");
    
    #set ( $String = $model.getClass().forName("java.lang.String") )
    #set ( $Comparator = $model.getClass().forName("java.util.Comparator") )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/supplemental-model.mdo

            <field>
              <name>project</name>
              <version>1.0.0</version>
              <description>Snippets of POM xml files used to supplement the data model.</description>
              <type>DOM</type>
            </field>
          </fields>
        </class>
      </classes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 21 12:56:07 UTC 2009
    - 2.1K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/testdata/accesslog/mode-server.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
        - providers:
            - name: envoy
          match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 19 17:39:03 UTC 2022
    - 175 bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/response-model.md

    ## 在文档中查看
    
    当你查看自动化文档时,你可以检查输入模型和输出模型是否都具有自己的 JSON Schema:
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/response-model/image01.png">
    
    并且两种模型都将在交互式 API 文档中使用:
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/response-model/image02.png">
    
    ## 响应模型编码参数
    
    你的响应模型可以具有默认值,例如:
    
    ```Python hl_lines="11  13-14"
    {!../../../docs_src/response_model/tutorial004.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. pkg/test/echo/common/model.go

    John Howard <******@****.***> 1641342165 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. pilot/pkg/credentials/model.go

    John Howard <******@****.***> 1708715901 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/component-model-maven.png

    component-model-maven.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 04:41:24 UTC 2024
    - 85.8K bytes
    - Viewed (0)
Back to top