Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for astype (0.32 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    //sys	mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
    
    func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	// Certain file systems get rather angry and EINVAL if you give
    	// them an empty string of data, rather than NULL.
    	if data == "" {
    		return mount(source, target, fstype, flags, nil)
    	}
    	datap, err := BytePtrFromString(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    func (p *Package) recordTypedefs(dtype dwarf.Type, pos token.Pos) {
    	p.recordTypedefs1(dtype, pos, map[dwarf.Type]bool{})
    }
    
    func (p *Package) recordTypedefs1(dtype dwarf.Type, pos token.Pos, visited map[dwarf.Type]bool) {
    	if dtype == nil {
    		return
    	}
    	if visited[dtype] {
    		return
    	}
    	visited[dtype] = true
    	switch dt := dtype.(type) {
    	case *dwarf.TypedefType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    				toVisit = append(toVisit, testPath{path: visit.path + "[*]", value: item})
    			} else if !isPrimitive(visit.value.Type().Elem().Kind()) {
    				t.Logf("unhandled non-primitive map type %s: %s", visit.path, visit.value.Type().Elem())
    			}
    
    		case visit.value.Kind() == reflect.Pointer:
    			if visit.value.IsNil() {
    				if visit.value.Type().Elem().Kind() == reflect.Struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "test2", "1.5")
                .hasType("thing")
                .dependsOn(m1)
                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "test3", "1.5")
                .hasType("thing")
                .dependsOn(m1)
                .publish()
                .allowAll()
    
            setupBuildWithColorAttributes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    //
    // Keep the type:. prefix, which parts of the linker (like the
    // 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, "@") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    //go:cgo_import_dynamic libc_mknod mknod "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(fsType)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(dir)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    //go:cgo_import_dynamic libc_mknod mknod "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(fsType)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(dir)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    					AccessModes: []api.PersistentVolumeAccessMode{api.ReadWriteOnce},
    					PersistentVolumeSource: api.PersistentVolumeSource{
    						FlexVolume: &api.FlexPersistentVolumeSource{
    							Driver: "kubernetes.io/blue",
    							FSType: "ext4",
    						},
    					},
    					StorageClassName: "test-storage-class",
    				},
    			},
    		},
    	}}
    
    	for _, volumeAttachment := range migrationEnabledErrorCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	if migrationEnabled {
    		pv.Spec.PersistentVolumeSource = v1.PersistentVolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName:    "test-disk",
    				FSType:    "ext4",
    				Partition: 0,
    				ReadOnly:  false,
    			},
    		}
    	} else {
    		pv.Spec.PersistentVolumeSource = v1.PersistentVolumeSource{
    			RBD: &v1.RBDPersistentVolumeSource{
    				RBDImage: "test-disk",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

       * strong values, and no automatic eviction of any kind.
       *
       * <p>Note that while this return type is {@code CacheBuilder<Object, Object>}, type parameters on
       * the {@link #build} methods allow you to create a cache of any key and value type desired.
       */
      public static CacheBuilder<Object, Object> newBuilder() {
        return new CacheBuilder<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top