Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,017 for Devname (0.19 sec)

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

    	Value   int32
    	Max     int32
    	Min     int32
    	Posmult int32
    	Negmult int32
    	Clock   int64
    }
    
    type BlkpgPartition struct {
    	Start   int64
    	Length  int64
    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x1269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	Value   int32
    	Max     int32
    	Min     int32
    	Posmult int32
    	Negmult int32
    	Clock   int32
    }
    
    type BlkpgPartition struct {
    	Start   int64
    	Length  int64
    	Pno     int32
    	Devname [64]uint8
    	Volname [64]uint8
    	_       [4]byte
    }
    
    const (
    	BLKPG = 0x20001269
    )
    
    type CryptoUserAlg struct {
    	Name        [64]int8
    	Driver_name [64]int8
    	Module_name [64]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	for i, dev := range devices {
    		idxPath := fldPath.Index(i)
    		devName := dev.Name
    		devPath := dev.DevicePath
    		didMatch, isPVC := isMatchedDevice(devName, volumes)
    		if len(devName) == 0 {
    			allErrs = append(allErrs, field.Required(idxPath.Child("name"), ""))
    		}
    		if devicename.Has(devName) {
    			allErrs = append(allErrs, field.Invalid(idxPath.Child("name"), devName, "must be unique"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. test/rename.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  5. releasenotes/notes/inbound-cluster-rename.yaml

    John Howard <******@****.***> 1606926239 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 16:23:59 UTC 2020
    - 232 bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/CallablesTest.java

        String oldName = Thread.currentThread().getName();
        final Supplier<String> newName = Suppliers.ofInstance("MyCrazyThreadName");
        Callable<@Nullable Void> callable =
            new Callable<@Nullable Void>() {
              @Override
              public @Nullable Void call() throws Exception {
                assertEquals(Thread.currentThread().getName(), newName.get());
                return null;
              }
            };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/CallablesTest.java

        String oldName = Thread.currentThread().getName();
        final Supplier<String> newName = Suppliers.ofInstance("MyCrazyThreadName");
        Callable<@Nullable Void> callable =
            new Callable<@Nullable Void>() {
              @Override
              public @Nullable Void call() throws Exception {
                assertEquals(Thread.currentThread().getName(), newName.get());
                return null;
              }
            };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbShareInfo.java

        protected String netName;
        protected int type;
        protected String remark;
    
        public SmbShareInfo() {
        }
        public SmbShareInfo(String netName, int type, String remark)
        {
            this.netName = netName;
            this.type = type;
            this.remark = remark;
        }
        public String getName() {
            return netName;
        }
        public int getType() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java

        protected String netName;
        protected int type;
        protected String remark;
    
    
        /**
         * 
         */
        public SmbShareInfo () {}
    
    
        /**
         * 
         * @param netName
         * @param type
         * @param remark
         */
        public SmbShareInfo ( String netName, int type, String remark ) {
            this.netName = netName;
            this.type = type;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Feb 17 09:30:57 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

            this.homeDir = settings.getHomeDir();
            this.optionsFile = settings.getOptionsFile();
            this.keyName = settings.getKeyName();
            this.passphrase = settings.getPassphrase();
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public void sign(final InputStream input, final OutputStream output) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top