Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Tstruct (0.13 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-permissive-port-mtls-strict.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 9090
          notPrincipals:
          - presence: {}
    name: converted_peer_authentication_permissive-strict-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 206 bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-and-permissive-port-mtls.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 226 bytes
    - Viewed (0)
  3. src/testing/quick/quick_test.go

    }
    
    // This tests that ArbitraryValue is working by checking that all the arbitrary
    // values of type MyStruct have x = 42.
    type myStruct struct {
    	x int
    }
    
    func (m myStruct) Generate(r *rand.Rand, _ int) reflect.Value {
    	return reflect.ValueOf(myStruct{x: 42})
    }
    
    func myStructProperty(in myStruct) bool { return in.x == 42 }
    
    func TestCheckProperty(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 9K bytes
    - Viewed (0)
  4. src/reflect/internal/example1/example.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package example1
    
    type MyStruct struct {
    	MyStructs []MyStruct
    	MyStruct  *MyStruct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 246 bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	const prog = `package main
    
    import "fmt"
    
    type astruct struct {
    	X int
    }
    
    type bstruct struct {
    	X float32
    }
    
    var globalptr *astruct
    var globalvar astruct
    var bvar0, bvar1, bvar2 bstruct
    
    func main() {
    	fmt.Println(globalptr, globalvar, bvar0, bvar1, bvar2)
    }
    `
    
    	f := gobuild(t, dir, prog, NoOpt)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  6. src/encoding/json/decode_test.go

    	type (
    		embed1 struct{ Q int }
    		embed2 struct{ Q int }
    		embed3 struct {
    			Q int64 `json:",string"`
    		}
    		S1 struct {
    			*embed1
    			R int
    		}
    		S2 struct {
    			*embed1
    			Q int
    		}
    		S3 struct {
    			embed1
    			R int
    		}
    		S4 struct {
    			*embed1
    			embed2
    		}
    		S5 struct {
    			*embed3
    			R int
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. src/encoding/gob/type_test.go

    }
    
    func TestStructType(t *testing.T) {
    	sstruct := getTypeUnlocked("Foo", reflect.TypeFor[Foo]())
    	str := sstruct.string()
    	// If we can print it correctly, we built it correctly.
    	expected := "Foo = struct { A int; B int; C string; D bytes; E float; F float; G Bar = struct { X string; }; H Bar; I Foo; }"
    	if str != expected {
    		t.Errorf("struct printed as %q; expected %q", str, expected)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/internal/types/testdata/spec/assignability.go

    	Defined   _Struct
    )
    
    func (Defined) m() int
    
    // proto-variables for tests
    
    var (
    	b _Basic
    	a _Array
    	l _Slice
    	s _Struct
    	p _Pointer
    	f _Func
    	i _Interface
    	m _Map
    	c _Chan
    	d _Struct
    
    	B Basic
    	A Array
    	L Slice
    	S Struct
    	P Pointer
    	F Func
    	I Interface
    	M Map
    	C Chan
    	D Defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-unset-port-mtls-strict-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: strict-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: UNSET
      portLevelMtls:
        8080: 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 212 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-and-disable-port-mtls-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: strict-and-disable-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: STRICT
      portLevelMtls:
        9090:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 225 bytes
    - Viewed (0)
Back to top