Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,150 for mode_ (0.05 sec)

  1. pilot/pkg/networking/plugin/authn/authentication.go

    			Mode: model.MTLSDisable,
    		}
    	}
    	return b.applier.InboundMTLSSettings(port, b.proxy, b.trustDomains, authn.NoOverride)
    }
    
    func (b *Builder) ForHBONE() authn.MTLSSettings {
    	if b == nil {
    		return authn.MTLSSettings{
    			Port: model.HBoneInboundListenPort,
    			Mode: model.MTLSDisable,
    		}
    	}
    	// HBONE is always strict
    	return b.applier.InboundMTLSSettings(model.HBoneInboundListenPort, b.proxy, b.trustDomains, model.MTLSStrict)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.model.ModelElement.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 517 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. errors.go

    	// ErrPrimaryKeyRequired primary keys required
    	ErrPrimaryKeyRequired = errors.New("primary key required")
    	// ErrModelValueRequired model value required
    	ErrModelValueRequired = errors.New("model value required")
    	// ErrModelAccessibleFieldsRequired model accessible fields required
    	ErrModelAccessibleFieldsRequired = errors.New("model accessible fields required")
    	// ErrSubQueryRequired sub query required
    	ErrSubQueryRequired = errors.New("sub query required")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/util/workloadinstances/index.go

    	// 2) workload instances have the same IP but different networks
    	GetByIP(string) []*model.WorkloadInstance
    	// Empty returns whether the index is empty.
    	Empty() bool
    	// ForEach iterates over all workload instances in the index.
    	ForEach(func(*model.WorkloadInstance))
    }
    
    // indexKey returns index key for a given workload instance.
    func indexKey(wi *model.WorkloadInstance) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 05:45:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pkg/apis/resource/fuzzer/fuzzer.go

    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    
    			// Custom fuzzing for allocation mode: pick one valid mode randomly.
    			modes := []resource.AllocationMode{
    				resource.AllocationModeImmediate,
    				resource.AllocationModeWaitForFirstConsumer,
    			}
    			obj.AllocationMode = modes[c.Rand.Intn(len(modes))]
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top