Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 372 for Tdname (0.26 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/gcepersistentdiskvolumesource.go

    // GCEPersistentDiskVolumeSourceApplyConfiguration represents an declarative configuration of the GCEPersistentDiskVolumeSource type for use
    // with apply.
    type GCEPersistentDiskVolumeSourceApplyConfiguration struct {
    	PDName    *string `json:"pdName,omitempty"`
    	FSType    *string `json:"fsType,omitempty"`
    	Partition *int32  `json:"partition,omitempty"`
    	ReadOnly  *bool   `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. src/net/cgo_unix_cgo_resn.go

    	return err
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	C.res_nclose(state)
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_uchar, anslen int) int {
    	x := C.res_nsearch(state, dname, C.int(class), C.int(typ), ans, C.int(anslen))
    	return int(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 979 bytes
    - Viewed (0)
  3. src/net/http/filetransport_test.go

    	}
    }
    
    func TestFileTransport(t *testing.T) {
    	check := checker(t)
    
    	dname := t.TempDir()
    	fname := filepath.Join(dname, "foo.txt")
    	err := os.WriteFile(fname, []byte("Bar"), 0644)
    	check("WriteFile", err)
    	defer os.Remove(fname)
    
    	tr := &Transport{}
    	tr.RegisterProtocol("file", NewFileTransport(Dir(dname)))
    	c := &Client{Transport: tr}
    
    	fooURLs := []string{"file:///foo.txt", "file://../foo.txt"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. hack/boilerplate/boilerplate.py

                for dname in skipped_names:
                    if dname in dirs:
                        dirs.remove(dname)
                for dname in dirs:
                    # dirs that start with __ are ignored
                    if dname.startswith("__"):
                        dirs.remove(dname)
    
                for name in walkfiles:
                    pathname = os.path.join(root, name)
                    files.append(pathname)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/net/cgo_unix_cgo_res.go

    	return nil
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	return
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_uchar, anslen int) int {
    	x := C.res_search(dname, C.int(class), C.int(typ), ans, C.int(anslen))
    	return int(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 892 bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    			Name:      podName,
    			Namespace: "mynamespace",
    			Labels: map[string]string{
    				"name": podName,
    			},
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "containerName",
    					Image: "containerImage",
    					VolumeMounts: []v1.VolumeMount{
    						{
    							Name:      "volumeMountName",
    							ReadOnly:  false,
    							MountPath: "/mnt",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. internal/event/name.go

    			res[i] = Name(i + 1)
    		}
    		return res
    	default:
    		return []Name{name}
    	}
    }
    
    // Mask returns the type as mask.
    // Compound "All" types are expanded.
    func (name Name) Mask() uint64 {
    	if name < objectSingleTypesEnd {
    		return 1 << (name - 1)
    	}
    	var mask uint64
    	for _, n := range name.Expand() {
    		mask |= 1 << (n - 1)
    	}
    	return mask
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. cmd/genman/gen_kube_man.go

    	dparent := strings.Replace(parent, " ", "-", -1)
    	name := command.Name()
    	dname := name
    	if len(parent) > 0 {
    		dname = dparent + "-" + name
    		name = parent + " " + name
    	}
    
    	out := new(bytes.Buffer)
    	short := command.Short
    	long := command.Long
    	if len(long) == 0 {
    		long = short
    	}
    
    	preamble(out, name, short, long)
    	printOptions(out, command)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/net/cgo_unix_syscall.go

    }
    
    func _C_res_ninit(state *_C_struct___res_state) error {
    	unix.ResNinit(state)
    	return nil
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_char, anslen int) int {
    	x, _ := unix.ResNsearch(state, dname, class, typ, ans, anslen)
    	return x
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	unix.ResNclose(state)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/Name.java

            }
            this.name = name.toUpperCase();
            this.hexCode = hexCode;
            this.scope = scope != null && scope.length() > 0 ? scope : cfg.getNetbiosScope();
            this.srcHashCode = 0;
        }
    
    
        /**
         * @param cfg
         * @param name
         */
        public Name ( Configuration cfg, NetbiosName name ) {
            this.config = cfg;
            this.name = name.getName();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.7K bytes
    - Viewed (0)
Back to top