Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,527 for inst (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    		expectedServiceCount = 2
    		expectMCSService = true
    	}
    
    	instances := ic.getProxyServiceTargets()
    	assert.Equal(t, len(instances), expectedServiceCount)
    
    	for _, inst := range instances {
    		svc := inst.Service
    		if svc.Hostname == serviceImportClusterSetHost {
    			if !expectMCSService {
    				t.Fatalf("found ServiceInstance for unimported service %s", serviceImportClusterSetHost)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.go

    		if w.ctxt != nil {
    			w.string(strconv.Itoa(w.ctxt.getID(t)))
    		}
    		w.typeName(t.obj) // when hashing written for readability of the hash only
    		if t.inst != nil {
    			// instantiated type
    			w.typeList(t.inst.targs.list())
    		} else if w.ctxt == nil && t.TypeParams().Len() != 0 { // For type hashing, don't need to format the TypeParams
    			// parameterized type
    			w.tParamList(t.TypeParams().list())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    		if w.ctxt != nil {
    			w.string(strconv.Itoa(w.ctxt.getID(t)))
    		}
    		w.typeName(t.obj) // when hashing written for readability of the hash only
    		if t.inst != nil {
    			// instantiated type
    			w.typeList(t.inst.targs.list())
    		} else if w.ctxt == nil && t.TypeParams().Len() != 0 { // For type hashing, don't need to format the TypeParams
    			// parameterized type
    			w.tParamList(t.TypeParams().list())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.golden

    		return x < y
    	})
    }
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. src/go/printer/testdata/expressions.raw

    		return x < y
    	})
    }
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/check/checkers.go

    			return fmt.Errorf("reached network not in %v, got %v", expectedByNetwork.Networks(), networkHits)
    		}
    	}
    	return nil
    }
    
    func isNaked(c echo.Caller) bool {
    	if c != nil {
    		if inst, ok := c.(echo.Instance); ok {
    			return inst.Config().IsNaked()
    		}
    	}
    	return false
    }
    
    func clusterFor(c echo.Caller) cluster.Cluster {
    	if c != nil {
    		// Determine the source network of the caller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    			}
    			arg := decodeArg(aop, x)
    			if arg == nil { // Cannot decode argument
    				continue Search
    			}
    			args[j] = arg
    		}
    		decoderCover[i] = true
    		inst = Inst{
    			Op:   f.op,
    			Args: args,
    			Enc:  x,
    		}
    		return inst, nil
    	}
    	return Inst{}, errUnknown
    }
    
    // decodeArg decodes the arg described by aop from the instruction bits x.
    // It returns nil if x cannot be decoded according to aop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/wasm/asm.go

    			idx := uint32(lenHostImports) + uint32(ldr.SymValue(s)>>16) - funcValueOffset
    			writeName(ctxt.Out, name)           // inst.exports.run/resume/getsp in wasm_exec.js
    			ctxt.Out.WriteByte(0x00)            // func export
    			writeUleb128(ctxt.Out, uint64(idx)) // funcidx
    		}
    		writeName(ctxt.Out, "mem") // inst.exports.mem in wasm_exec.js
    		ctxt.Out.WriteByte(0x02)   // mem export
    		writeUleb128(ctxt.Out, 0)  // memidx
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/mips.s

    	//	LADDW rreg ',' sreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, int($4), &$6);
    	//	}
    	ADD	R1, R2, R3
    
    	//	LADDW imm ',' sreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, int($4), &$6);
    	//	}
    	ADD	$1, R2, R3
    
    	//	LADDW rreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	ADD	R1, R2
    
    	//	LADDW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	ADD	$4, R1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    	ppath := "cfg/yesFuncsNoTests"
    	pname := "yesFuncsNoTests"
    	mode := "count"
    	gran := "perblock"
    	tag := mode + "_" + gran
    	instdir := filepath.Join(dir, "inst")
    	if err := os.Mkdir(instdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mdir := filepath.Join(dir, "meta")
    	if err := os.Mkdir(mdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top