Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 367 for typeOf (0.23 sec)

  1. helm-releases/minio-5.2.0.tgz

    toYaml .Values.service.annotations | nindent 4 }} {{- end }} spec: type: {{ .Values.service.type }} {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }} clusterIP: {{ .Values.service.clusterIP }} {{- end }} {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }} externalTrafficPolic: {{ .Values.service.externalTrafficPolic | quote }} {{- end }} {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerSourceRa }} loadBalancerSourceRa:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/sync/atomic/atomic_test.go

    		_ uint32
    		i Int64
    	}
    	if o := reflect.TypeOf(&signed).Elem().Field(1).Offset; o != 8 {
    		t.Fatalf("Int64 offset = %d, want 8", o)
    	}
    	if p := reflect.ValueOf(&signed).Elem().Field(1).Addr().Pointer(); p&7 != 0 {
    		t.Fatalf("Int64 pointer = %#x, want 8-aligned", p)
    	}
    
    	var unsigned struct {
    		_ uint32
    		i Uint64
    	}
    	if o := reflect.TypeOf(&unsigned).Elem().Field(1).Offset; o != 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  3. src/net/http/client.go

    	// Instead of detecting our golang.org/x/net/http2.Transport,
    	// it might detect a Transport type in a different http2
    	// package. But I know of none, and the only problem would be
    	// some temporarily leaked goroutines if the transport didn't
    	// support contexts. So this is a good enough heuristic:
    	if reflect.TypeOf(rt).String() == "*http2.Transport" {
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    // a minimalist RPC mechanism. Exactly one of its fields must be set to indicate
    // which method to call.
    type call struct {
    	Ping     *pingArgs
    	Fuzz     *fuzzArgs
    	Minimize *minimizeArgs
    }
    
    // minimizeArgs contains arguments to workerServer.minimize. The value to
    // minimize is already in shared memory.
    type minimizeArgs struct {
    	// Timeout is the time to spend minimizing. This may include time to start up,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // Except for Types0, every struct in the family has two member types:
    // Head for the first type in the list, and Tail for the rest of the
    // list.
    
    // The empty type list.
    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    struct Types1 {
      typedef T1 Head;
      typedef Types0 Tail;
    };
    
    $range i 2..n
    
    $for i [[
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. doc/go_spec.html

    or <a href="#Type_parameter_declarations">type parameter lists</a>.
    <i>Composite types</i>&mdash;array, struct, pointer, function,
    interface, slice, map, and channel types&mdash;may be constructed using
    type literals.
    </p>
    
    <p>
    Predeclared types, defined types, and type parameters are called <i>named types</i>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  7. src/flag/flag.go

    	}
    	if defVal.Type() != ptrVal.Type().Elem() {
    		panic(fmt.Sprintf("default type does not match variable type: %v != %v", defVal.Type(), ptrVal.Type().Elem()))
    	}
    	ptrVal.Elem().Set(defVal)
    	return textValue{p}
    }
    
    func (v textValue) Set(s string) error {
    	return v.p.UnmarshalText([]byte(s))
    }
    
    func (v textValue) Get() interface{} {
    	return v.p
    }
    
    func (v textValue) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    // and a Lock call.
    type locker2 interface {
    	Lock1()
    	Unlock1()
    	Lock2()
    	Unlock2()
    }
    
    type mutex struct {
    	mu sync.Mutex
    }
    
    func (m *mutex) Lock1()   { m.mu.Lock() }
    func (m *mutex) Unlock1() { m.mu.Unlock() }
    func (m *mutex) Lock2()   { m.mu.Lock() }
    func (m *mutex) Unlock2() { m.mu.Unlock() }
    
    type rwmutexWrite struct {
    	mu sync.RWMutex
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	var list []string
    	for _, x := range cmdline {
    		switch x := x.(type) {
    		case string:
    			list = append(list, x)
    		case []string:
    			list = append(list, x...)
    		default:
    			panic("invalid dirCmd argument type: " + reflect.TypeOf(x).String())
    		}
    	}
    
    	bin = list[0]
    	if !filepath.IsAbs(bin) {
    		panic("command is not absolute: " + bin)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    }
    
    type AnyHolder struct {
    	XMLName Name
    	XML     string `xml:",innerxml"`
    }
    
    type RecurseA struct {
    	A string
    	B *RecurseB
    }
    
    type RecurseB struct {
    	A *RecurseA
    	B string
    }
    
    type PresenceTest struct {
    	Exists *struct{}
    }
    
    type IgnoreTest struct {
    	PublicSecret string `xml:"-"`
    }
    
    type MyBytes []byte
    
    type Data struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top