Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,527 for inst (0.25 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller.go

    			// TODO: maybe cds?
    			if isDNSTypeServiceEntry(se) &&
    				se.WorkloadSelector != nil {
    
    				fullPush = true
    				for _, inst := range currInstance {
    					configsUpdated[model.ConfigKey{
    						Kind:      kind.ServiceEntry,
    						Name:      string(inst.Service.Hostname),
    						Namespace: cfg.Namespace,
    					}] = struct{}{}
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. src/go/types/predicates.go

    	if alias, _ := t.(*Alias); alias != nil && alias.tparams != nil && alias.targs == nil {
    		return true
    	}
    	named := asNamed(t)
    	return named != nil && named.obj != nil && named.inst == nil && named.TypeParams().Len() > 0
    }
    
    // Comparable reports whether values of type T are comparable.
    func Comparable(T Type) bool {
    	return comparable(T, true, nil, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // of a binary.
    func (bu *Binutils) Disasm(file string, start, end uint64, intelSyntax bool) ([]plugin.Inst, error) {
    	b := bu.get()
    	if !b.objdumpFound {
    		return nil, errors.New("cannot disasm: no objdump tool available")
    	}
    	args := []string{"--disassemble", "--demangle", "--no-show-raw-insn",
    		"--line-numbers", fmt.Sprintf("--start-address=%#x", start),
    		fmt.Sprintf("--stop-address=%#x", end)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    		for ; nbits >= 8; nbits -= 8 {
    			*dst = uint8(bits)
    			dst = add1(dst)
    			bits >>= 8
    		}
    
    		// Process one instruction.
    		inst := uintptr(*p)
    		p = add1(p)
    		n := inst & 0x7F
    		if inst&0x80 == 0 {
    			// Literal bits; n == 0 means end of program.
    			if n == 0 {
    				// Program is over.
    				break Run
    			}
    			nbyte := n / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    		"source_workload_namespace":      srcns,
    	}
    
    	query.Metric = "istio_tcp_connections_opened_total"
    	query.Labels = labels
    
    	return query
    }
    
    func deployName(inst echo.Instance) string {
    	return inst.ServiceName() + "-" + inst.Config().Version
    }
    
    func TestMetadataServer(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		ver, _ := t.Clusters().Default().GetKubernetesVersion()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/predicates.go

    	if alias, _ := t.(*Alias); alias != nil && alias.tparams != nil && alias.targs == nil {
    		return true
    	}
    	named := asNamed(t)
    	return named != nil && named.obj != nil && named.inst == nil && named.TypeParams().Len() > 0
    }
    
    // Comparable reports whether values of type T are comparable.
    func Comparable(T Type) bool {
    	return comparable(T, true, nil, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    func annotateAssembly(insts []plugin.Inst, samples graph.Nodes, file plugin.ObjFile) []assemblyInstruction {
    	// Add end marker to simplify printing loop.
    	insts = append(insts, plugin.Inst{
    		Addr: ^uint64(0),
    	})
    
    	// Ensure samples are sorted by address.
    	samples.Sort(graph.AddressOrder)
    
    	s := 0
    	asm := make([]assemblyInstruction, 0, len(insts))
    	for ix, in := range insts[:len(insts)-1] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			}
    		},
    		_fn : {
    			init	: function () {
    				this.set_focus();
    				if(this._get_settings().core.rtl) {
    					this.get_container().addClass("jstree-rtl").css("direction", "rtl");
    				}
    				this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>" + this._get_string("loading") + "</a></li></ul>");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  9. src/regexp/regexp.go

    	hasPrefix(re *Regexp) bool
    	index(re *Regexp, pos int) int
    	context(pos int) lazyFlag
    }
    
    // inputString scans a string.
    type inputString struct {
    	str string
    }
    
    func (i *inputString) step(pos int) (rune, int) {
    	if pos < len(i.str) {
    		c := i.str[pos]
    		if c < utf8.RuneSelf {
    			return rune(c), 1
    		}
    		return utf8.DecodeRuneInString(i.str[pos:])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return inst;}},_attachInstance:function(idx,parent,refNode){var inst=this._instances[idx];if(!inst.isPlaceholder){parent.insertBefore(inst.root,refNode);}},_detachAndRemoveInstance:function(idx){var inst=this._detachInstance(idx);if(inst){this._pool.push(inst);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top