Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,310 for reflect1 (0.2 sec)

  1. pkg/adsc/delta.go

    	"go.uber.org/atomic"
    	"google.golang.org/genproto/googleapis/rpc/status"
    	"google.golang.org/grpc"
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/reflect/protoreflect"
    	"google.golang.org/protobuf/reflect/protoregistry"
    	"k8s.io/utils/set"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Throwables.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    import java.util.AbstractList;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import javax.annotation.CheckForNull;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/os/exec/exec_posix_test.go

    			// so we don't care whether cmd.Dir is reflected in cmd.Environ.
    			cmd.Env = append(cmd.Environ(), "PWD="+tc.pwd)
    			cmd.Dir = tc.dir
    
    			var pwds []string
    			for _, kv := range cmd.Environ() {
    				if strings.HasPrefix(kv, "PWD=") {
    					pwds = append(pwds, strings.TrimPrefix(kv, "PWD="))
    				}
    			}
    
    			wantPWDs := []string{tc.pwd}
    			if !reflect.DeepEqual(pwds, wantPWDs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    				case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
    					reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    					dv.Set(sv.Convert(dt))
    					return nil
    				case reflect.Float32, reflect.Float64:
    					dv.Set(sv.Convert(dt))
    					return nil
    				}
    			case reflect.Float32, reflect.Float64:
    				switch dt.Kind() {
    				case reflect.Float32, reflect.Float64:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. logger/sql.go

    var convertibleTypes = []reflect.Type{reflect.TypeOf(time.Time{}), reflect.TypeOf(false), reflect.TypeOf([]byte{})}
    
    // RegEx matches only numeric values
    var numericPlaceholderRe = regexp.MustCompile(`\$\d+\$`)
    
    func isNumeric(k reflect.Kind) bool {
    	switch k {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return true
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    explain the permanent Colours of Natural Bodies._ These Colours arise from hence, that some natural Bodies reflect some sorts of Rays, others other sorts more copiously than the rest. Minium reflects the least refrangible or red-making Rays most copiously, and thence appears red. Violets reflect the most refrangible most copiously, and thence have their Colour, and so of other Bodies. Every Body reflects the Rays of its own Colour more copiously than the rest, and from their excess and predominance in the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/printers/jsonpath.go

    	v := reflect.ValueOf(item)
    	for _, i := range indices {
    		index := reflect.ValueOf(i)
    		var isNil bool
    		if v, isNil = indirect(v); isNil {
    			return false
    		}
    		switch v.Kind() {
    		case reflect.Array, reflect.Slice, reflect.String:
    			var x int64
    			switch index.Kind() {
    			case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    				x = index.Int()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. src/reflect/badlinkname.go

    //go:linkname badlinkname_rtype_AssignableTo reflect.(*rtype).AssignableTo
    func badlinkname_rtype_AssignableTo(*rtype, Type) bool
    
    //go:linkname badlinkname_rtype_Bits reflect.(*rtype).Bits
    func badlinkname_rtype_Bits(*rtype) int
    
    //go:linkname badlinkname_rtype_ChanDir reflect.(*rtype).ChanDir
    func badlinkname_rtype_ChanDir(*rtype) ChanDir
    
    //go:linkname badlinkname_rtype_Comparable reflect.(*rtype).Comparable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/reflect/type_test.go

    		{"func(func(int, int))", reflect.TypeOf(func(func(int, int)) {}), false},
    		{"int64", reflect.TypeOf(int64(1)), false},
    		{"uint64", reflect.TypeOf(uint64(1)), false},
    		{"*[4]int", reflect.TypeOf(&[4]int{}), true},
    		{"chan int64", reflect.TypeOf(make(chan int64)), false},
    		{"map[int]int", reflect.TypeOf(make(map[int]int)), true},
    		{"string", reflect.TypeOf(""), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. utils/tests/utils.go

    				}
    				return
    			}
    		}
    
    		if reflect.ValueOf(got).Kind() == reflect.Struct {
    			if reflect.ValueOf(expect).Kind() == reflect.Struct {
    				if reflect.ValueOf(got).NumField() == reflect.ValueOf(expect).NumField() {
    					exported := false
    					for i := 0; i < reflect.ValueOf(got).NumField(); i++ {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 10 09:21:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top