Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 417 for z$ (0.03 sec)

  1. src/time/genzabbrs.go

    	if err != nil {
    		return nil, err
    	}
    	zs := make([]*zone, 0)
    	for _, z := range sd.Zones {
    		if z.Territory != "001" {
    			// to avoid dups. I don't know why.
    			continue
    		}
    		l, err := time.LoadLocation(z.Type)
    		if err != nil {
    			return nil, err
    		}
    		st, dt := getAbbrs(l)
    		zs = append(zs, &zone{
    			WinName:  z.Other,
    			UnixName: z.Type,
    			StTime:   st,
    			DSTime:   dt,
    		})
    	}
    	return zs, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    // It's similar to WithZone, but small enough to be inlinable.
    func (ip Addr) withoutZone() Addr {
    	if !ip.Is6() {
    		return ip
    	}
    	ip.z = z6noz
    	return ip
    }
    
    // hasZone reports whether ip has an IPv6 zone.
    func (ip Addr) hasZone() bool {
    	return ip.z != z0 && ip.z != z4 && ip.z != z6noz
    }
    
    // IsLinkLocalUnicast reports whether ip is a link-local unicast address.
    func (ip Addr) IsLinkLocalUnicast() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    };
    
    // Check if device coordinate is outside of topology mesh shape bounds.
    bool DeviceCoordinateOutOfBound(int x, int y, int z, int core, int bound_x,
                                    int bound_y, int bound_z, int bound_core) {
      return x < 0 || x >= bound_x || y < 0 || y >= bound_y || z < 0 ||
             z >= bound_z || core < 0 || core >= bound_core;
    }
    
    // Create error message for an out of bound device coordinate.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-HelloRetryRequest

    00000110  5b 83 56 e2 32 42 e9 58  b6 d7 49 a6 b5 68 1a 41  |[.V.2B.X..I..h.A|
    00000120  03 56 6b dc 5a 89                                 |.Vk.Z.|
    >>> Flow 4 (server to client)
    00000000  16 03 03 00 9b 02 00 00  97 03 03 9a 1f 7a fa 06  |.............z..|
    00000010  c4 5f 92 61 62 d2 a5 f3  ae b9 a6 d8 6b eb 13 a7  |._.ab.......k...|
    00000020  2f 17 62 79 3a ca 42 8b  18 06 15 20 00 00 00 00  |/.by:.B.... ....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVBZreg ((OR|XOR|AND) <t> x (MOVBZreg y))) => (MOVBZreg ((OR|XOR|AND) <t> x y))
    
    (MOV(B|H|W)Zreg z:(ANDconst [c] (MOVBZload ptr x))) => z
    (MOV(B|H|W)Zreg z:(AND y (MOV(B|H|W)Zload ptr x))) => z
    (MOV(H|W)Zreg z:(ANDconst [c] (MOVHZload ptr x))) => z
    (MOVWZreg z:(ANDconst [c] (MOVWZload ptr x))) => z
    
    // Arithmetic constant ops
    
    (ADD x (MOVDconst <t> [c])) && is32Bit(c) && !t.IsPtr() => (ADDconst [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <ctype.h>
    #include <string.h>
    #include <signal.h>
    
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    enum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below
    
    struct tuple {
    	int num;
    	const char *name;
    };
    
    struct tuple errors[] = {
    "
    	for i in $errors
    	do
    		echo -E '	{'$i', "'$i'" },'
    	done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. src/runtime/runtime_test.go

    }
    
    func defer1() {
    	defer func(x, y, z int) {
    		if recover() != nil || x != 1 || y != 2 || z != 3 {
    			panic("bad recover")
    		}
    	}(1, 2, 3)
    }
    
    func BenchmarkDefer10(b *testing.B) {
    	for i := 0; i < b.N/10; i++ {
    		defer2()
    	}
    }
    
    func defer2() {
    	for i := 0; i < 10; i++ {
    		defer func(x, y, z int) {
    			if recover() != nil || x != 1 || y != 2 || z != 3 {
    				panic("bad recover")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    				ab.asmando(ctxt, cursym, p, &p.From, int(o.op[z+2]))
    
    			case Zvex_i_rm_vo:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				ab.asmando(ctxt, cursym, p, p.GetFrom3(), int(o.op[z+2]))
    				ab.Put1(byte(p.From.Offset))
    
    			case Zvex_i_r_v:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				regnum := byte(0x7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritegeneric.go

    			if x != left.Args[0] {
    				continue
    			}
    			z := left.Args[1]
    			if z.Op != OpSub64 {
    				continue
    			}
    			_ = z.Args[1]
    			z_0 := z.Args[0]
    			if z_0.Op != OpConst64 || auxIntToInt64(z_0.AuxInt) != 16 || y != z.Args[1] || !((shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 16)) {
    				continue
    			}
    			v.reset(OpRotateLeft16)
    			v.AddArg2(x, z)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

         * ```
         * val x = 10<caret>
         * val z = x
         * ```
         *
         * If we change the initializer of `x` to `"str"` the return type of `x` will become `String` instead of the initial `Int`. This will
         * change the return type of `z` as it does not have an explicit type. So, it is an **OOBM**.
         *
         * #### Example 2
         *
         * ```
         * val x: Int = 10<caret>
         * val z = x
         * ```
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top