Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 7,522 for mode_ (0.1 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    	serviceAccounts []string,
    	sni string,
    	autoMTLSEnabled bool,
    	meshExternal bool,
    	serviceMTLSMode model.MutualTLSMode,
    ) (*networking.ClientTLSSettings, mtlsContextType) {
    	if tls != nil {
    		if tls.Mode == networking.ClientTLSSettings_DISABLE || tls.Mode == networking.ClientTLSSettings_SIMPLE {
    			return tls, userSupplied
    		}
    		// For backward compatibility, use metadata certs if provided.
    		if cb.hasMetadataCerts() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/factory.go

    // for the given service innstance.
    func NewPolicyApplier(push *model.PushContext, proxy *model.Proxy, svc *model.Service) PolicyApplier {
    	forWorkload := model.PolicyMatcherForProxy(proxy).WithService(svc)
    	return newPolicyApplier(
    		push.AuthnPolicies.GetRootNamespace(),
    		push.AuthnPolicies.GetJwtPoliciesForWorkload(forWorkload),
    		push.AuthnPolicies.GetPeerAuthenticationsForWorkload(forWorkload), push)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

            }
        }
    
        @Override
        public Model injectDefaultValues(Model model, ModelBuilderRequest request, ModelProblemCollector problems) {
            Model.Builder builder = Model.newBuilder(model);
    
            builder.dependencies(injectList(model.getDependencies(), this::injectDependency));
            Build build = model.getBuild();
            if (build != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder_test.go

    		},
    	}
    
    	for _, tt := range tests {
    		proxy := &model.Proxy{
    			Metadata: &model.NodeMetadata{
    				InboundListenerExactBalance:  model.StringBool(tt.useExactBalance),
    				OutboundListenerExactBalance: model.StringBool(tt.useExactBalance),
    			},
    		}
    		listeners := buildListeners(t, TestOptions{Services: testServices}, proxy)
    		if vo := xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners); vo == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, mode_t mode, dev_t dev); }
    	SYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, ... mode_t mode); }
    	SYS_READLINKAT     = 322 // { ssize_t sys_readlinkat(int fd, const char *path, char *buf, size_t count); }
    	SYS_RENAMEAT       = 323 // { int sys_renameat(int fromfd, const char *from, int tofd, const char *to); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    grep 'mode: set' $WORK/covdata/out.txt
    grep 'mod.example/main/main.go:' $WORK/covdata/out.txt
    grep 'mod.example/sub/sub.go:' $WORK/covdata/out.txt
    ! grep 'rsc.io' $WORK/covdata/out.txt
    
    rm $WORK/covdata
    rm $WORK/modex.exe
    
    #-------------------------------------------
    
    # Repeat the build but with -coverpkg=all
    
    go build -mod=mod -coverpkg=all -o $WORK/modex.exe -cover mod.example/main
    
    # Execute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. fastapi/_compat.py

        def _model_rebuild(model: Type[BaseModel]) -> None:
            model.model_rebuild()
    
        def _model_dump(
            model: BaseModel, mode: Literal["json", "python"] = "json", **kwargs: Any
        ) -> Any:
            return model.model_dump(mode=mode, **kwargs)
    
        def _get_model_config(model: BaseModel) -> Any:
            return model.model_config
    
        def get_schema_from_model_field(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/README.md

        default values when in "declaration" mode but not "definition" mode. A view
        of some argument object simply knows its default value and does not care the
        context.
    *   In terms of dependencies, `Renderers` use `Views` and other `Renderers`.
        However, `Renderers` do **not** reference the model directly (e.g.
        `OpSpec`). This is because if a renderer needs to reference part of the
        model, it should get a language specific representation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authorizer/config.go

    var repeatableAuthorizerTypes = []string{modes.ModeWebhook}
    
    // GetNameForAuthorizerMode returns the name to be set for the mode in AuthorizationConfiguration
    // For now, lower cases the mode name
    func GetNameForAuthorizerMode(mode string) string {
    	return strings.ToLower(mode)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    	"istio.io/istio/pilot/pkg/features"
    	pilot_model "istio.io/istio/pilot/pkg/model"
    	istionetworking "istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/networking/core/listenertest"
    	istio_route "istio.io/istio/pilot/pkg/networking/core/route"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/model"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xdstest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top