Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for atom (0.05 sec)

  1. src/syscall/ztypes_linux_mips64le.go

    type Stat_t struct {
    	Dev     uint32
    	Pad1    [3]int32
    	Ino     uint64
    	Mode    uint32
    	Nlink   uint32
    	Uid     uint32
    	Gid     uint32
    	Rdev    uint32
    	Pad2    [3]uint32
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize uint32
    	Pad4    uint32
    	Blocks  int64
    }
    
    type Statfs_t struct {
    	Type    int64
    	Bsize   int64
    	Frsize  int64
    	Blocks  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # Consider if there is a way to check if activation fusion is properly
        # done in MLIR level.
        # Tests that the quantized graph outputs similar values. The rtol and atol
        # values are arbitrary.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.3, atol=0.2)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run_linux.go

    			if err != nil {
    				return fmt.Errorf("failed to find 'lo' link: %v", err)
    			}
    			tproxyTable, err := strconv.Atoi(cfg.InboundTProxyRouteTable)
    			if err != nil {
    				return fmt.Errorf("failed to parse InboundTProxyRouteTable: %v", err)
    			}
    			tproxyMark, err := strconv.Atoi(cfg.InboundTProxyMark)
    			if err != nil {
    				return fmt.Errorf("failed to parse InboundTProxyMark: %v", err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. operator/pkg/compare/compare.go

    	if err != nil {
    		return "", err
    	}
    	aom := ao.ToMap()
    
    	bo, err := object.ParseK8sObjectsFromYAMLManifest(b)
    	if err != nil {
    		return "", err
    	}
    	bom := bo.ToMap()
    
    	if len(rnm) != 0 {
    		aom, err = renameResource(aom, rnm)
    		if err != nil {
    			return "", err
    		}
    	}
    
    	aosm, err := filterResourceWithSelectAndIgnore(aom, sm, im)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/goversion.go

    	}
    
    	matches := goVersionRE.FindStringSubmatch(s)
    	if matches == nil {
    		return lang{}, fmt.Errorf(`should be something like "go1.12"`)
    	}
    	major, err := strconv.Atoi(matches[1])
    	if err != nil {
    		return lang{}, err
    	}
    	minor, err := strconv.Atoi(matches[2])
    	if err != nil {
    		return lang{}, err
    	}
    	return lang{major: major, minor: minor}, nil
    }
    
    // currentLang returns the current language version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/pledge_openbsd.go

    func majmin() (major int, minor int, err error) {
    	var v Utsname
    	err = Uname(&v)
    	if err != nil {
    		return
    	}
    
    	major, err = strconv.Atoi(string(v.Release[0]))
    	if err != nil {
    		err = errors.New("cannot parse major version number returned by uname")
    		return
    	}
    
    	minor, err = strconv.Atoi(string(v.Release[2]))
    	if err != nil {
    		err = errors.New("cannot parse minor version number returned by uname")
    		return
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. internal/logger/config.go

    		queueSize, err := strconv.Atoi(queueSizeCfgVal)
    		if err != nil {
    			return cfg, err
    		}
    		if queueSize <= 0 {
    			return cfg, errInvalidQueueSize
    		}
    		batchSizeCfgVal := getCfgVal(EnvLoggerWebhookBatchSize, k, kv.Get(BatchSize))
    		batchSize, err := strconv.Atoi(batchSizeCfgVal)
    		if err != nil {
    			return cfg, err
    		}
    		if batchSize <= 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_arm.go

    	Nlink     uint32
    	Uid       uint32
    	Gid       uint32
    	Rdev      uint64
    	X__pad2   uint16
    	Pad_cgo_1 [6]byte
    	Size      int64
    	Blksize   int32
    	Pad_cgo_2 [4]byte
    	Blocks    int64
    	Atim      Timespec
    	Mtim      Timespec
    	Ctim      Timespec
    	Ino       uint64
    }
    
    type Statfs_t struct {
    	Type      int32
    	Bsize     int32
    	Blocks    uint64
    	Bfree     uint64
    	Bavail    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_mips.go

    type Stat_t struct {
    	Dev     uint32
    	Pad1    [3]int32
    	Ino     uint64
    	Mode    uint32
    	Nlink   uint32
    	Uid     uint32
    	Gid     uint32
    	Rdev    uint32
    	Pad2    [3]int32
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int32
    	Pad4    int32
    	Blocks  int64
    	Pad5    [14]int32
    }
    
    type Statfs_t struct {
    	Type      int32
    	Bsize     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_mipsle.go

    type Stat_t struct {
    	Dev     uint32
    	Pad1    [3]int32
    	Ino     uint64
    	Mode    uint32
    	Nlink   uint32
    	Uid     uint32
    	Gid     uint32
    	Rdev    uint32
    	Pad2    [3]int32
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int32
    	Pad4    int32
    	Blocks  int64
    	Pad5    [14]int32
    }
    
    type Statfs_t struct {
    	Type      int32
    	Bsize     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top