Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,527 for inst (0.1 sec)

  1. src/cmd/pprof/pprof.go

    	if intelSyntax {
    		return nil, fmt.Errorf("printing assembly in Intel syntax is not supported")
    	}
    	d, err := t.cachedDisasm(file)
    	if err != nil {
    		return nil, err
    	}
    	var asm []driver.Inst
    	d.Decode(start, end, nil, false, func(pc, size uint64, file string, line int, text string) {
    		asm = append(asm, driver.Inst{Addr: pc, File: file, Line: line, Text: text})
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// Apply Egress Gateway for service namespace to originate external traffic
    
    			createGateway(t, t, appNS, serviceNS, inst.Settings().EgressGatewayServiceNamespace,
    				inst.Settings().EgressGatewayServiceName, inst.Settings().EgressGatewayIstioLabel)
    
    			if err := WaitUntilNotCallable(internalClient[0], externalService[0]); err != nil {
    				t.Fatalf("failed to apply sidecar, %v", err)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	Disasm(file string, start, end uint64, intelSyntax bool) ([]Inst, error)
    }
    
    // An Inst is a single instruction in an assembly listing.
    type Inst struct {
    	Addr     uint64 // virtual address of instruction
    	Text     string // instruction text
    	Function string // function name
    	File     string // source file
    	Line     int    // source line
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tests/integration/security/filebased_tls_origination/main_test.go

    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	inst            istio.Instance
    	apps            deployment.TwoNamespaceView
    	client          echo.Instances
    	server          echo.Instances
    	internalClient  echo.Instances
    	externalService echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	// Wait for the resources to be processed by the controller.
    	retry.UntilOrFail(t, func() bool {
    		if svc := ec.GetService(ec.serviceHostname()); svc == nil {
    			return false
    		}
    		inst := ec.getEndpoint(c.Endpoints)
    		return inst != nil
    	}, serviceExportTimeout)
    	return ec, c.Endpoints
    }
    
    func (ec *serviceExportCacheImpl) serviceHostname() host.Name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/main_test.go

    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	inst              istio.Instance
    	apps              deployment.SingleNamespaceView
    	client            echo.Instances
    	server            echo.Instances
    	serverNakedFoo    echo.Instances
    	serverNakedBar    echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/config/builder.go

    	ns := s.Params().GetWellKnown(param.Namespace)
    	if ns == nil {
    		b.t.Fatalf("no %s specified in config params", param.Namespace)
    	}
    	inst, ok := ns.(namespace.Instance)
    	if !ok {
    		b.t.Fatalf("%s was of unexpected type: %v", param.Namespace, reflect.TypeOf(ns))
    	}
    	return inst
    }
    
    func (b *Builder) Copy() *Builder {
    	return &Builder{
    		t:             b.t,
    		needFrom:      copySources(b.needFrom),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. src/go/types/call.go

    		defer func() {
    			check.indent--
    			check.trace(pos, "=> %s (under = %s)", res, res.Underlying())
    		}()
    	}
    
    	inst := check.instance(pos, typ, targs, nil, check.context()).(*Signature)
    	assert(inst.TypeParams().Len() == 0) // signature is not generic anymore
    	check.recordInstance(expr, targs, inst)
    	assert(len(xlist) <= len(targs))
    
    	// verify instantiation lazily (was go.dev/issue/50450)
    	check.later(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. tests/integration/security/file_mounted_certs/main_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	inst         istio.Instance
    	apps         deployment.SingleNamespaceView
    	client       echo.Instances
    	server       echo.Instances
    	echo1NS      namespace.Instance
    	customConfig []echo.Config
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/go/printer/testdata/expressions.input

    
    func _() {
    	_ = [][]int {
    		[]int{1},
    		[]int{1, 2},
    		[]int{1, 2, 3},
    	}
    	_ = [][]int {
    		{1},
    		[]int{1, 2},
    		[]int{1, 2, 3},
    	}
    	_ = [][]int {
    		{1},
    		{1, 2},
    		{1, 2, 3},
    	}
    	_ = [][]int {{1}, {1, 2}, {1, 2, 3}}
    }
    
    
    // various multi-line expressions
    func _() {
    	// do not add extra indentation to multi-line string lists
    	_ = "foo" + "bar"
    	_ = "foo" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
Back to top