Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for id_map (0.17 sec)

  1. src/cmd/compile/internal/dwarfgen/dwinl.go

    func addRange(calls []dwarf.InlCall, start, end int64, ii int, imap map[int]int) {
    	if start == -1 {
    		panic("bad range start")
    	}
    	if end == -1 {
    		panic("bad range end")
    	}
    	if ii == -1 {
    		return
    	}
    	if start == end {
    		return
    	}
    	// Append range to correct inlined call
    	callIdx, found := imap[ii]
    	if !found {
    		base.Fatalf("can't find inlIndex %d in imap for prog at %d\n", ii, start)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/types.go

    func (t *DeclType) IsList() bool {
    	return t.KeyType == nil && t.ElemType != nil && t.Fields == nil
    }
    
    // IsMap returns whether the declaration is a 'map' type which defines parameterized key and
    // element types, but not fields.
    func (t *DeclType) IsMap() bool {
    	return t.KeyType != nil && t.ElemType != nil && t.Fields == nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    			Out:  `{"boolkey":true,"floatkey":1,"intkey":1,"nullkey":null}`, // gets alphabetized by Marshal
    		},
    	}
    
    	for i, tc := range testCases {
    		t.Run(fmt.Sprintf("%d_map", i), func(t *testing.T) {
    			// decode the input as a map item
    			inputJSON := fmt.Sprintf(`{"data":%s}`, tc.In)
    			expectedJSON := fmt.Sprintf(`{"data":%s}`, tc.Out)
    			m := map[string]interface{}{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. operator/pkg/util/reflect.go

    	return kindOf(value) == reflect.String
    }
    
    // IsPtr reports whether value is a ptr type.
    func IsPtr(value any) bool {
    	return kindOf(value) == reflect.Ptr
    }
    
    // IsMap reports whether value is a map type.
    func IsMap(value any) bool {
    	return kindOf(value) == reflect.Map
    }
    
    // IsMapPtr reports whether v is a map ptr type.
    func IsMapPtr(v any) bool {
    	t := reflect.TypeOf(v)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/assignability.go

    	_Pointer   = *int
    	_Func      = func(x int) string
    	_Interface = interface{ m() int }
    	_Map       = map[string]int
    	_Chan      = chan int
    
    	Basic     _Basic
    	Array     _Array
    	Slice     _Slice
    	Struct    _Struct
    	Pointer   _Pointer
    	Func      _Func
    	Interface _Interface
    	Map       _Map
    	Chan      _Chan
    	Defined   _Struct
    )
    
    func (Defined) m() int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_Defer-28]
    	_ = x[_Else-29]
    	_ = x[_Fallthrough-30]
    	_ = x[_For-31]
    	_ = x[_Func-32]
    	_ = x[_Go-33]
    	_ = x[_Goto-34]
    	_ = x[_If-35]
    	_ = x[_Import-36]
    	_ = x[_Interface-37]
    	_ = x[_Map-38]
    	_ = x[_Package-39]
    	_ = x[_Range-40]
    	_ = x[_Return-41]
    	_ = x[_Select-42]
    	_ = x[_Struct-43]
    	_ = x[_Switch-44]
    	_ = x[_Type-45]
    	_ = x[_Var-46]
    	_ = x[tokenCount-47]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/resolver.go

    	// pair, use it instead of doing a full import.
    	// Checker.impMap only caches packages that are marked Complete
    	// or fake (dummy packages for failed imports). Incomplete but
    	// non-fake packages do require an import to complete them.
    	key := importKey{path, dir}
    	imp := check.impMap[key]
    	if imp != nil {
    		return imp
    	}
    
    	// no package yet => import it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/go/types/resolver.go

    	// pair, use it instead of doing a full import.
    	// Checker.impMap only caches packages that are marked Complete
    	// or fake (dummy packages for failed imports). Incomplete but
    	// non-fake packages do require an import to complete them.
    	key := importKey{path, dir}
    	imp := check.impMap[key]
    	if imp != nil {
    		return imp
    	}
    
    	// no package yet => import it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. src/html/template/attr.go

    	"href":            contentTypeURL,
    	"hreflang":        contentTypePlain,
    	"http-equiv":      contentTypeUnsafe,
    	"icon":            contentTypeURL,
    	"id":              contentTypePlain,
    	"ismap":           contentTypePlain,
    	"keytype":         contentTypeUnsafe,
    	"kind":            contentTypePlain,
    	"label":           contentTypePlain,
    	"lang":            contentTypePlain,
    	"language":        contentTypeUnsafe,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. docs/sts/custom-token-identity.md

    ## Example request and response
    
    Sample request with `curl`:
    
    ```sh
    curl -XPOST 'http://localhost:9001/?Action=AssumeRoleWithCustomToken&Version=2011-06-15&Token=aaa&RoleArn=arn:minio:iam:::role/idmp-vGxBdLkOc8mQPU1-UQbBh-yWWVQ'
    ```
    
    Prettified Response:
    
    ```xml
    <?xml version="1.0" encoding="UTF-8"?>
    <AssumeRoleWithCustomTokenResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top