Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 1e23 (0.08 sec)

  1. src/os/user/cgo_lookup_unix.go

    	return sz > 0 && sz <= maxBufferSize
    }
    
    // Because we can't use cgo in tests:
    func structPasswdForNegativeTest() _C_struct_passwd {
    	sp := _C_struct_passwd{}
    	*_C_pw_uidp(&sp) = 1<<32 - 2
    	*_C_pw_gidp(&sp) = 1<<32 - 3
    	return sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/time/format.go

    	// 2-digit and 4-digit fields are the most common in time formats.
    	utod := func(u uint) byte { return '0' + byte(u) }
    	switch {
    	case width == 2 && u < 1e2:
    		return append(b, utod(u/1e1), utod(u%1e1))
    	case width == 4 && u < 1e4:
    		return append(b, utod(u/1e3), utod(u/1e2%1e1), utod(u/1e1%1e1), utod(u%1e1))
    	}
    
    	// Compute the number of decimal digits.
    	var n int
    	if u == 0 {
    		n = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * 🌐 Add Japanese translation for `docs/ja/docs/tutorial/body-fields.md`. PR [#1923](https://github.com/tiangolo/fastapi/pull/1923) by [@SwftAlpc](https://github.com/SwftAlpc).
    * 🌐 Add German translation for `docs/de/docs/tutorial/index.md`. PR [#9502](https://github.com/tiangolo/fastapi/pull/9502) by [@fhabers21](https://github.com/fhabers21).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    				}
    			}
    		}
    
    		errs = AppendValidation(errs, validateExportTo(cfg.Namespace, serviceEntry.ExportTo, true, false))
    		return errs.Unwrap()
    	})
    
    // ValidatePortName validates a port name to DNS-1123
    func ValidatePortName(name string) error {
    	if !labels.IsDNS1123Label(name) {
    		return fmt.Errorf("invalid port name: %s", name)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    
    (2) For the following input of shape `[4, 1, 1, 3]` and block_size of 2:
    
    ```
    [[[[1, 2, 3]]], [[[4, 5, 6]]], [[[7, 8, 9]]], [[[10, 11, 12]]]]
    ```
    
    The output tensor has shape `[1, 2, 2, 3]` and value:
    
    ```
    x = [[[[1, 2, 3], [4, 5, 6]],
          [[7, 8, 9], [10, 11, 12]]]]
    ```
    
    (3) For the following input of shape `[4, 2, 2, 1]` and block_size of 2:
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. RELEASE.md

    Wen-Heng (Jack) Chung, wenxizhu, Will Battel, William D. Irons, wyzhao, Xin,
    Yasuhiro Matsumoto, ymodak, Yong Tang, Younes Khoudli, Yuan Lin, Yves-Noel
    Weweler, Zantares, zjjott, 卜居, 王振华 (Wang Zhenhua), 黄鑫
    
    # Release 1.12.3
    
    ## Bug Fixes and Other Changes
    
    *   Updates `png_archive` dependency to 1.6.37 to not be affected by
        CVE-2019-7317, CVE-2018-13785, and CVE-2018-14048.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top