Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 241 for esize (0.04 sec)

  1. tensorflow/cc/gradients/nn_grad.cc

      string data_format;
      string padding;
      std::vector<int32> strides;
      std::vector<int32> ksize;
      auto attrs = op.output(0).node()->attrs();
      TF_RETURN_IF_ERROR(GetNodeAttr(attrs, "data_format", &data_format));
      TF_RETURN_IF_ERROR(GetNodeAttr(attrs, "ksize", &ksize));
      TF_RETURN_IF_ERROR(GetNodeAttr(attrs, "padding", &padding));
      TF_RETURN_IF_ERROR(GetNodeAttr(attrs, "strides", &strides));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  2. hack/e2e-internal/e2e-cluster-size.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 987 bytes
    - Viewed (0)
  3. src/debug/dwarf/typeunit.go

    			toff = uint32(to64)
    		}
    
    		boff := b.off
    		d.typeSigs[sig] = &typeUnit{
    			unit: unit{
    				base:   base,
    				off:    boff,
    				data:   b.bytes(int(n - (b.off - hdroff))),
    				atable: atable,
    				asize:  int(asize),
    				vers:   vers,
    				is64:   dwarf64,
    			},
    			toff: Offset(toff),
    			name: name,
    		}
    		if b.err != nil {
    			return b.err
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/debug/dwarf/unit.go

    		if vers >= 5 {
    			u.utype = b.uint8()
    			u.asize = int(b.uint8())
    		}
    		var abbrevOff uint64
    		if u.is64 {
    			abbrevOff = b.uint64()
    		} else {
    			abbrevOff = uint64(b.uint32())
    		}
    		atable, err := d.parseAbbrev(abbrevOff, u.vers)
    		if err != nil {
    			if b.err == nil {
    				b.err = err
    			}
    			break
    		}
    		u.atable = atable
    		if vers < 5 {
    			u.asize = int(b.uint8())
    		}
    
    		switch u.utype {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/go/token/position_test.go

    			t.Errorf("%s: inconsistent test case: got file size %d; want %d", test.filename, len(test.source), test.size)
    		}
    
    		// add file and verify name and size
    		f := fset.AddFile(test.filename, fset.Base()+delta, test.size)
    		if f.Name() != test.filename {
    			t.Errorf("got filename %q; want %q", f.Name(), test.filename)
    		}
    		if f.Size() != test.size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. releasenotes/notes/istiod-config-size-bytes.yaml

    Brian Avery <******@****.***> 1620951743 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 208 bytes
    - Viewed (0)
  7. internal/disk/stat_freebsd.go

    	s := syscall.Statfs_t{}
    	err = syscall.Statfs(path, &s)
    	if err != nil {
    		return Info{}, err
    	}
    	reservedBlocks := s.Bfree - uint64(s.Bavail)
    	info = Info{
    		Total:  uint64(s.Bsize) * (s.Blocks - reservedBlocks),
    		Free:   uint64(s.Bsize) * uint64(s.Bavail),
    		Files:  s.Files,
    		Ffree:  uint64(s.Ffree),
    		FSType: getFSType(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pkg/volume/util/fs/fs.go

    	}
    
    	// Available is blocks available * fragment size
    	available := int64(statfs.Bavail) * int64(statfs.Bsize)
    
    	// Capacity is total block count * fragment size
    	capacity := int64(statfs.Blocks) * int64(statfs.Bsize)
    
    	// Usage is block being used * fragment size (aka block size).
    	usage := (int64(statfs.Blocks) - int64(statfs.Bfree)) * int64(statfs.Bsize)
    
    	inodes := int64(statfs.Files)
    	inodesFree := int64(statfs.Ffree)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. internal/disk/stat_bsd.go

    	s := syscall.Statfs_t{}
    	err = syscall.Statfs(path, &s)
    	if err != nil {
    		return Info{}, err
    	}
    	reservedBlocks := s.Bfree - s.Bavail
    	info = Info{
    		Total:  uint64(s.Bsize) * (s.Blocks - reservedBlocks),
    		Free:   uint64(s.Bsize) * s.Bavail,
    		Files:  s.Files,
    		Ffree:  s.Ffree,
    		FSType: getFSType(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

                        + this.allocationSize + ",extFileAttributes=" + this.extFileAttributes + ",eaSize=" + this.eaSize + ",shortName=" + this.shortName
                        + ",filename=" + this.filename + "]");
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
Back to top