Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 417 for z$ (0.04 sec)

  1. src/syscall/mksyscall.pl

    	if($sysname eq "") {
    		$sysname = "SYS_$func";
    		$sysname =~ s/([a-z])([A-Z])/${1}_$2/g;	# turn FooBar into Foo_Bar
    		$sysname =~ y/a-z/A-Z/;
    		if($libc) {
    			$sysname =~ y/A-Z/a-z/;
    			$sysname = substr $sysname, 4;
    			$funcname = "libc_$sysname";
    		}
    	}
    	if($libc) {
    		if($funcname eq "") {
    			$sysname = substr $sysname, 4;
    			$sysname =~ y/A-Z/a-z/;
    			$funcname = "libc_$sysname";
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

    // CHECK: [[cond:%.*]] = tf_mlrt.predicate [[cond_tensor]]
    // CHECK: [[z:%.*]] = mlrt.cond [[cond]] @then @else([[x]], [[y]])
    // CHECK: return [[z]]
    func.func @main(%cond: tensor<i1>, %x: tensor<i32>, %y: tensor<i32>) -> tensor<i32> {
      %z = "tf.If"(%cond, %x, %y) {then_branch = @then, else_branch = @else, is_stateless = true} : (tensor<i1>, tensor<i32>, tensor<i32>) -> tensor<i32>
      return %z: tensor<i32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/time/internal_test.go

    	// but it is theoretically possible
    	sources := []string{"../../lib/time/zoneinfo.zip"}
    	z, err := loadLocation("America/Los_Angeles", sources)
    	if err != nil {
    		panic("cannot load America/Los_Angeles for testing: " + err.Error() + "; you may want to use -tags=timetzdata")
    	}
    	z.name = "Local"
    	localLoc = *z
    }
    
    var origPlatformZoneSources []string = platformZoneSources
    
    func disablePlatformSources() (undo func()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. cmd/testdata/undeleteable-object.tgz

    +|ˆ® ½éô /pH¦Ü£= ÕM±¸bv=ü㵕ñ—hàš ßÿ ¨C¤Ê¼øÿ à?L9ÞlC q›&NÖWçuoÔe'ÐimMH ÎúïtËb©˜‹§„ß•1°~ž xEðgÍç%%Î ‘;C²#)ááI †5 fà ž@þkÈUc 5CþE¾£ê@[½A¤0|™ðáü‚ú /£‹-6 êZ 9‚Îy ˜¾Ò ºÈLO ž'~&‹ ßç¡ ©Xa\Í€ Ù è x ŒFò,á ºq•kóÐH‡ëßd ÛºÉ|¬q¯VÆ Ê}rŠòsÄGBP¹* a×I|¸¯ÞŸ‹¢Ÿ U?ÿŸY ¬^dŸˆã¦â÷Ï[Ë´`º¢g· Þ… ¡-Ö JÉ ŽÊî ÷bb %) Ð (\ǤF/ ðà bâKú Šö. M À -•7È®R9îƒ# ¨Zíiƒ X¬÷–¿š€et‡ øЕ Ó‘˜Øžó·Û€´Ó2kC–¬l /ùÐ î¯P‹ô Îæº(9ê òüi Óu ›á ® 6…k|,¾¡ å ä­³ ðúj ø ¢ž åƒÀs ²_, ^#¿lêG{% )b— ¾:9º] % ‰CwTŽW `çºs(F% yd `š’¾!!) Ž7*"…?ÖF % G¸ñž][-ì t6xE ò œ[¼@[ìÔˆ^...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  5. cmd/background-newdisks-heal-ops.go

    func healFreshDisk(ctx context.Context, z *erasureServerPools, endpoint Endpoint) error {
    	poolIdx, setIdx := endpoint.PoolIdx, endpoint.SetIdx
    	disk := getStorageViaEndpoint(endpoint)
    	if disk == nil {
    		return fmt.Errorf("Unexpected error disk must be initialized by now after formatting: %s", endpoint)
    	}
    
    	// Prevent parallel erasure set healing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. test/codegen/bits.go

    }
    
    // check direct operation on memory with constant and shifted constant sources
    func bitOpOnMem(a []uint32, b, c, d uint32) {
    	// amd64:`ANDL\s[$]200,\s\([A-Z][A-Z0-9]+\)`
    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/net/netip/export_test.go

    	Z4    = z4
    	Z6noz = z6noz
    )
    
    type Uint128 = uint128
    
    type AddrDetail = addrDetail
    
    func Mk128(hi, lo uint64) Uint128 {
    	return uint128{hi, lo}
    }
    
    func MkAddr(u Uint128, z unique.Handle[AddrDetail]) Addr {
    	return Addr{u, z}
    }
    
    func IPv4(a, b, c, d uint8) Addr { return AddrFrom4([4]byte{a, b, c, d}) }
    
    var TestAppendToMarshal = testAppendToMarshal
    
    func (a Addr) IsZero() bool   { return a.isZero() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:15 UTC 2024
    - 730 bytes
    - Viewed (0)
  8. docs/pl/docs/fastapi-people.md

    ...Ale tutaj chcę pokazać Ci społeczność.
    
    ---
    
    **FastAPI** otrzymuje wiele wsparcia od społeczności. Chciałbym podkreślić ich wkład.
    
    To są ludzie, którzy:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:50:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-Ed25519

    00000170  22 02 a9 ff 5e 55 37 6e  61 86 71 73 94 2f 7e 50  |"...^U7na.qs./~P|
    00000180  45 96 cf 23 dd 39 90 5d  57 04 a3 d0 9f 97 f8 56  |E..#.9.]W......V|
    00000190  fa cf 7a a9 e6 57 1f cb  33 a0 82 7a 84 94 1f 6d  |..z..W..3..z...m|
    000001a0  d8 0b c7 fb bc 62 94 36  4a d6 96 ce f6 f2 7f 06  |.....b.6J.......|
    000001b0  18 59 66 77 77 12 8c 74  06 61 8f b6 37 35 65 fd  |.Yfww..t.a..75e.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ECDSA

    00000280  dd 31 60 7a 00 6e a2 13  c7 58 08 b0 d5 32 03 2e  |.1`z.n...X...2..|
    00000290  08 86 a2 97 7a f0 a1 95  10 5f a2 d6 fc e7 a3 93  |....z...._......|
    000002a0  16 a2 3d 33 04 e7 aa 3b  99 a5 ce c7 2c 28 71 bb  |..=3...;....,(q.|
    000002b0  ed e6 b9 5a a5 ec d1 44  54 e0 ff 41 cf 1a cb ff  |...Z...DT..A....|
    000002c0  67 43 6b af 87 19 40 74  17 03 03 00 a4 bc ef 32  |gCk...@t.......2|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top