Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for notSaved (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	configFieldMap map[string]configField
    )
    
    func init() {
    	// Config names for fields that are not saved in settings and therefore
    	// do not have a JSON name.
    	notSaved := map[string]string{
    		// Not saved in settings, but present in URLs.
    		"SampleIndex": "sample_index",
    
    		// Following fields are also not placed in URLs.
    		"Output":     "output",
    		"SourcePath": "source_path",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tests/integration/security/reachability_test.go

    						param.Namespace.String(): systemNS,
    					}),
    					fromMatch:          notMigration,
    					toMatch:            notMigration,
    					expectMTLS:         notNaked,
    					expectCrossCluster: notFromNaked,
    					expectCrossNetwork: notNaked,
    					expectSuccess:      notNaked,
    					minIstioVersion:    integIstioVersion,
    				},
    				{
    					name: "global mtls permissive",
    					configs: config.Sources{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/match/matchers.go

    }
    
    // AllNaked matches instances where every subset has SidecarInject set to false.
    var AllNaked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsAllNaked()
    }
    
    // NotNaked is equivalent to Not(Naked)
    var NotNaked = Not(Naked)
    
    // Headless matches instances that are backed by headless services.
    var Headless Matcher = func(i echo.Instance) bool {
    	return i.Config().Headless
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/security/policy_attachment_only/jwt_gateway_test.go

    	for _, e := range echos {
    		all = append(all, e...)
    	}
    
    	return echotest.New(t, all).
    		WithDefaultFilters(1, 1).
    		FromMatch(match.And(
    			match.NotNaked,
    			match.NotProxylessGRPC)).
    		ToMatch(match.And(
    			match.NotNaked,
    			match.NotProxylessGRPC)).
    		ConditionallyTo(echotest.NoSelfCalls)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. tests/integration/security/pass_through_filter_chain_test.go

    						FromMatch(match.NotProxylessGRPC).
    						ToMatch(match.And(
    							// TODO(nmittler): Why not headless/multiversion?
    							match.NotHeadless,
    							match.NotMultiVersion,
    							match.NotNaked,
    							match.NotProxylessGRPC)).
    						ConditionallyTo(echotest.NoSelfCalls).
    						// TODO(nmittler): Why does passthrough not work?
    						ConditionallyTo(echotest.SameNetwork).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    }
    
    func newTLSGatewayTest(t framework.TestContext) *echotest.T {
    	return echotest.New(t, apps.All.Instances()).
    		WithDefaultFilters(1, 1).
    		FromMatch(match.And(
    			match.Namespace(apps.Ns1.Namespace),
    			match.NotNaked,
    			match.NotProxylessGRPC)).
    		ToMatch(match.ServiceName(apps.External.All.NamespacedName()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters_test.go

    					},
    				},
    			},
    			"RunToN": {
    				run: func(t framework.TestContext, testTopology map[string]map[string]int) {
    					echotest.New(t, all).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.And(match.NotNaked, match.NotHeadless)).
    						ToMatch(match.NotHeadless).
    						RunToN(3, func(ctx framework.TestContext, from echo.Instance, dsts echo.Services) {
    							srcKey := from.Config().ClusterLocalFQDN()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    	// TODO include proxyless as different features become supported
    	t.SetDefaultSourceMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	t.SetDefaultTargetMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	includeProxyless := []match.Matcher{match.NotNaked, match.NotHeadless}
    
    	skipVM := t.Settings().Skip(echo.VM)
    	t.RunTraffic(TrafficTestCase{
    		name: "added header",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    	for _, e := range echos {
    		all = append(all, e...)
    	}
    
    	return echotest.New(t, all).
    		WithDefaultFilters(1, 1).
    		FromMatch(match.And(
    			match.NotNaked,
    			match.NotProxylessGRPC)).
    		ToMatch(match.And(
    			match.NotNaked,
    			match.NotProxylessGRPC)).
    		ConditionallyTo(echotest.NoSelfCalls)
    }
    
    type allowValue bool
    
    func (v allowValue) Bool() bool {
    	return bool(v)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top