Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for ORD (0.03 sec)

  1. docs/ja/docs/tutorial/path-params-numeric-validations.md

    クエリパラメータ`q`を`Query`やデフォルト値なしで宣言し、パスパラメータ`item_id`を`Path`を用いて宣言し、それらを別の順番に並びたい場合、Pythonには少し特殊な構文が用意されています。
    
    関数の最初のパラメータとして`*`を渡します。
    
    Pythonはその`*`で何かをすることはありませんが、それ以降のすべてのパラメータがキーワード引数(キーと値のペア)として呼ばれるべきものであると知っているでしょう。それは<abbr title="From: K-ey W-ord Arg-uments"><code>kwargs</code></abbr>としても知られています。たとえデフォルト値がなくても。
    
    ```Python hl_lines="8"
    {!../../../docs_src/path_params_numeric_validations/tutorial003.py!}
    ```
    
    ## 数値の検証: 以上
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 15 15:46:32 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/math/big/float.go

    		y.validate()
    	}
    
    	mx := x.ord()
    	my := y.ord()
    	switch {
    	case mx < my:
    		return -1
    	case mx > my:
    		return +1
    	}
    	// mx == my
    
    	// only if |mx| == 1 we have to compare the mantissae
    	switch mx {
    	case -1:
    		return y.ucmp(x)
    	case +1:
    		return x.ucmp(y)
    	}
    
    	return 0
    }
    
    // ord classifies x and returns:
    //
    //	-2 if -Inf == x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. src/debug/pe/file.go

    			} else { // 32bit
    				va := binary.LittleEndian.Uint32(d[0:4])
    				d = d[4:]
    				if va == 0 {
    					break
    				}
    				if va&0x80000000 > 0 { // is Ordinal
    					// TODO add dynimport ordinal support.
    					//ord := va&0x0000FFFF
    				} else {
    					fn, _ := getString(names, int(va-ds.VirtualAddress+2))
    					all = append(all, fn+":"+dt.dll)
    				}
    			}
    		}
    	}
    
    	return all, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	inc   uint32
    }
    
    func (ord *randomOrder) reset(count uint32) {
    	ord.count = count
    	ord.coprimes = ord.coprimes[:0]
    	for i := uint32(1); i <= count; i++ {
    		if gcd(i, count) == 1 {
    			ord.coprimes = append(ord.coprimes, i)
    		}
    	}
    }
    
    func (ord *randomOrder) start(i uint32) randomEnum {
    	return randomEnum{
    		count: ord.count,
    		pos:   i % ord.count,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ompile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:True|False|None)\b/,number:/(?:\b(?=\d)|\B(?=\.))(?:0[bo])?(?:(?:\d|0x[\d...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    			return fmt.Errorf("successor %s is Running and Ready while %s is not", pods[idx].Name, pods[idx-1].Name)
    		}
    
    		if ord := idx + getStartOrdinal(set); getOrdinal(pods[idx]) != ord {
    			return fmt.Errorf("pods %s deployed in the wrong order %d", pods[idx].Name, ord)
    		}
    
    		if !storageMatches(set, pods[idx]) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&operp;":                           "\u29b9",
    	"&oplus;":                           "\u2295",
    	"&or;":                              "\u2228",
    	"&orarr;":                           "\u21bb",
    	"&ord;":                             "\u2a5d",
    	"&order;":                           "\u2134",
    	"&orderof;":                         "\u2134",
    	"&ordf;":                            "\u00aa",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. src/html/entity.go

    		"operp;":                           '\U000029B9',
    		"oplus;":                           '\U00002295',
    		"or;":                              '\U00002228',
    		"orarr;":                           '\U000021BB',
    		"ord;":                             '\U00002A5D',
    		"order;":                           '\U00002134',
    		"orderof;":                         '\U00002134',
    		"ordf;":                            '\U000000AA',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "ULT", controls: 1},
    		{name: "ULE", controls: 1},
    		{name: "UGT", controls: 1},
    		{name: "UGE", controls: 1},
    		{name: "EQF", controls: 1},
    		{name: "NEF", controls: 1},
    		{name: "ORD", controls: 1}, // FP, ordered comparison (parity zero)
    		{name: "NAN", controls: 1}, // FP, unordered comparison (parity one)
    	}
    
    	archs = append(archs, arch{
    		name:            "386",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    s??uahatsla?åve&gnal?lreb???h&0alu-ysm--nx?7&4ay8-akiivagg--nx?5ay7-atkoulok--nx??a!.sg???i&e&hsr&agev?ågev??rf??k&h&avlaraeb?ávlaraeb??s??lm&a?å??mpouvtal&am?ám??pph&al?ál??rrounaddleid?ssaneve?ššáneve??j&0aoq-ysgv--nx?94bawh-akhojrk--nx??k&a&b&ord?ørd??jks?lleis??iv!aklejps?l&am?evs?u??mag?nel?ojg?r&a&l?n??epok?iel?y&or?ør???s&ah?kel?om??øjg??kabene?ojsarak?ram&deh.&aoq-relv--nx?rel&av?åv??so??e&let.&ag5-b--nx?ob?øb??ra???åjks??l&a!d&anrus?d&numurb?ron??e&gnard?nte?s&meh?sin??ttin??g&is?nyl??k...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top