Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,940 for mode_ (0.04 sec)

  1. docs/de/docs/tutorial/response-model.md

    <img src="/img/tutorial/response-model/image01.png">
    
    Und beide Modelle werden auch in der interaktiven API-Dokumentation verwendet:
    
    <img src="/img/tutorial/response-model/image02.png">
    
    ## Andere Rückgabetyp-Annotationen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/component-model.odg

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    		outputPolicy.Mode = model.ConvertToMutualTLSMode(meshCfg.Spec.(*v1beta1.PeerAuthentication).Mtls.Mode)
    	}
    
    	if namespaceCfg != nil && !isMtlsModeUnset(namespaceCfg.Spec.(*v1beta1.PeerAuthentication).Mtls) {
    		// If namespace policy is defined, update output policy to namespace policy. This means namespace
    		// policy overwrite mesh policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    			// Check top-level mode
    			if mode == v1beta1.PeerAuthentication_MutualTLS_PERMISSIVE || mode == v1beta1.PeerAuthentication_MutualTLS_DISABLE {
    				// we don't care; log and continue
    				log.Debugf("skipping port %s/%s for PeerAuthentication %s/%s for ambient since the parent mTLS mode is %s",
    					port, portMtlsMode, cfg.Namespace, cfg.Name, mode)
    				continue
    			}
    			foundNonStrictPortmTLS = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

        model_ = input_model_->GetModel();
      }
    
      std::unique_ptr<FlatBufferModel> input_model_;
      const Model* model_;
    
      bool IsModelInputOrOutput(const Model* model, uint32_t tensor_idx) {
        for (size_t subgraph_idx = 0; subgraph_idx < model_->subgraphs()->size();
             ++subgraph_idx) {
          const auto subgraph = model->subgraphs()->Get(subgraph_idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authorization.go

    	}
    
    	modes := sets.NewString(o.Modes...)
    	for _, mode := range o.Modes {
    		if !authzmodes.IsValidAuthorizationMode(mode) {
    			allErrors = append(allErrors, fmt.Errorf("authorization-mode %q is not a valid mode", mode))
    		}
    		if mode == authzmodes.ModeABAC && o.PolicyFile == "" {
    			allErrors = append(allErrors, fmt.Errorf("authorization-mode ABAC's authorization policy file not passed"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/helper/helpers_test.go

    	}
    
    	modes = GetAccessModesFromString("RWO,ROX,RWX")
    	if !ContainsAccessMode(modes, v1.ReadWriteOnce) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadWriteOnce, modes)
    	}
    	if !ContainsAccessMode(modes, v1.ReadOnlyMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadOnlyMany, modes)
    	}
    	if !ContainsAccessMode(modes, v1.ReadWriteMany) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

     * under the License.
     */
    package org.apache.maven.model.building;
    
    import java.io.File;
    import java.nio.file.Path;
    import java.util.Date;
    import java.util.List;
    import java.util.Properties;
    
    import org.apache.maven.model.Model;
    import org.apache.maven.model.Profile;
    import org.apache.maven.model.resolution.ModelResolver;
    import org.apache.maven.model.resolution.WorkspaceModelResolver;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/bench_test.go

    				}),
    			})
    			proxy := &model.Proxy{
    				Type:            model.SidecarProxy,
    				IPAddresses:     []string{"10.3.3.3"},
    				ID:              "random",
    				ConfigNamespace: "default",
    				Metadata:        &model.NodeMetadata{},
    			}
    			push := s.PushContext()
    			proxy.SetSidecarScope(push)
    			b.ResetTimer()
    			var c model.Resources
    			for n := 0; n < b.N; n++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters_test.go

    	ds := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		Configs: c,
    		Services: []*model.Service{{
    			Hostname:   "example.ns.svc.cluster.local",
    			Attributes: model.ServiceAttributes{Name: "example", Namespace: "ns"},
    			Ports:      model.PortList{{Port: 80, Protocol: protocol.HTTP, Name: "http"}},
    		}},
    		Gateways: []model.NetworkGateway{
    			// network1 has only 1 gateway in cluster1a, which will be used for the endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top