Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for IsType (0.19 sec)

  1. src/cmd/cgo/gcc.go

    			break
    		}
    		if p.isUnsafeData(c.Fun, true) {
    			return true
    		}
    		if !p.isType(c.Fun) {
    			break
    		}
    		x = c.Args[0]
    	}
    	return false
    }
    
    // isType reports whether the expression is definitely a type.
    // This is conservative--it returns false for an unknown identifier.
    func (p *Package) isType(t ast.Expr) bool {
    	switch t := t.(type) {
    	case *ast.SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    // DWARF generator) know means the symbol is not decodable.
    // Leave type:runtime. symbols alone, because other parts of
    // the linker manipulates them.
    func typeSymbolMangle(name string) string {
    	isType := strings.HasPrefix(name, "type:")
    	if !isType && !strings.Contains(name, "@") {
    		// Issue 58800: instantiated symbols may include a type name, which may contain "@"
    		return name
    	}
    	if strings.HasPrefix(name, "type:runtime.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    	pred(tv.IsValue() && tv.Value == nil, "value")
    	pred(tv.IsNil(), "nil")
    	pred(tv.Addressable(), "addressable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    	pred(tv.IsValue() && tv.Value == nil, "value")
    	pred(tv.IsNil(), "nil")
    	pred(tv.Addressable(), "addressable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter_test.go

    				volSrc.CSI.FSType = &fsType
    				return volume.NewSpecFromVolume(volSrc)
    			},
    		},
    		{
    			name:   "setup with persistent source",
    			podUID: types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    			mode:   storage.VolumeLifecyclePersistent,
    			fsType: "zfs",
    			spec: func(fsType string, options []string) *volume.Spec {
    				pvSrc := makeTestPV("pv1", 20, testDriver, "vol1")
    				pvSrc.Spec.CSI.FSType = fsType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.Deployment.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.DaemonSet.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.4K bytes
    - Viewed (0)
Back to top