Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for z$ (0.07 sec)

  1. src/regexp/testdata/re2-exhaustive.txt.bz2

    j-�VͥF��ڹ���[k�S�1�{Md��[A棖6�X��k3q%��y=��EM�EDM)z�d Hi#:�Z6�j+V��llI��-�m�N��q�alW'���xǹ��ޓSQ���Q�4]kS��b2�!!�+�s��=�Tvf�������i�z��7gG���A�ɤ�=�2d��MW ]Hҭ�h"�[Z��Ԇ�Yh��"[YT�m�{����u�q�l�M��$�Y�ɡ)h�~YD�k`���ȱ�F�-i!�fՔ�f8��Sr�aIm�FPn�㎻k����b-��m69v8����e�gI�Z�Ӝ�����?(�t!�+����I;9��4�Z�3%8�Z�sVNsq�`B�c�|��!)�9g�|�&�Ėm��8�}8��M�En�$�ڞI���K6nr�ܴ��qns�����k1�L��M��+��ԓ�r�&�����D��nR���QMUW^���]��$ �e��ܛ�XC�vN�×�����)�ͧ5�m|�z{] �-�$�lW3��,���;���7^x�&>���REEm���r���[Dڦͪ�Q1�U���bU2�j�J...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    		z := v_0.Args[1]
    		y := v_0.Args[0]
    		x := v_1
    		v.reset(OpARMSUBshiftLLreg)
    		v.AddArg3(x, y, z)
    		return true
    	}
    	// match: (RSB x (SRL y z))
    	// result: (RSBshiftRLreg x y z)
    	for {
    		x := v_0
    		if v_1.Op != OpARMSRL {
    			break
    		}
    		z := v_1.Args[1]
    		y := v_1.Args[0]
    		v.reset(OpARMRSBshiftRLreg)
    		v.AddArg3(x, y, z)
    		return true
    	}
    	// match: (RSB (SRL y z) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		}
    		break
    	}
    	// match: (MOVBZreg z:(ANDconst [c] (MOVBZload ptr x)))
    	// result: z
    	for {
    		z := v_0
    		if z.Op != OpPPC64ANDconst {
    			break
    		}
    		z_0 := z.Args[0]
    		if z_0.Op != OpPPC64MOVBZload {
    			break
    		}
    		v.copyOf(z)
    		return true
    	}
    	// match: (MOVBZreg z:(AND y (MOVBZload ptr x)))
    	// result: z
    	for {
    		z := v_0
    		if z.Op != OpPPC64AND {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    that computes <code>x*y + z</code> without rounding the intermediate result <code>x*y</code>.
    These examples show when a Go implementation can use that instruction:
    </p>
    
    <pre>
    // FMA allowed for computing r, because x*y is not explicitly rounded:
    r  = x*y + z
    r  = z;   r += x*y
    t  = x*y; r = t + z
    *p = x*y; r = *p + z
    r  = x*y + float64(z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                        type: string
                      kind:
                        description: Kind is kind of the referent.
                        maxLength: 63
                        minLength: 1
                        pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
                        type: string
                      name:
                        description: Name is the name of the referent.
                        maxLength: 253
                        minLength: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    eturn ds([...i,...e])}var hs=C(()=>{l();Yu();Xu()});var Zu={};Ae(Zu,{default:()=>Z});var Z,gt=C(()=>{l();Z={resolve:i=>i,extname:i=>"."+i.split(".").pop()}});function xi(i){return typeof i=="object"&&i!==null}function r0(i){return Object.keys(i).length===0}function ef(i){return typeof i=="string"||i instanceof String}function ms(i){return xi(i)&&i.config===void 0&&!r0(i)?null:xi(i)&&i.config!==void 0&&ef(i.config)?Z.resolve(i.config):xi(i)&&i.config!==void 0&&xi(i.config)?null:ef(i)?Z.resolve(i):i0()}function...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	case t.IsComplex():
    		switch t.Size() {
    		case 8:
    			z := s.constFloat32(types.Types[types.TFLOAT32], 0)
    			return s.entryNewValue2(ssa.OpComplexMake, t, z, z)
    		case 16:
    			z := s.constFloat64(types.Types[types.TFLOAT64], 0)
    			return s.entryNewValue2(ssa.OpComplexMake, t, z, z)
    		default:
    			s.Fatalf("bad sized complex type %v", t)
    		}
    
    	case t.IsString():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/moment-with-locales.min.js

    s(e){return a.longDateFormat(e)||e}for(J.lastIndex=0;0<=t&&J.test(e);)e=e.replace(J,s),J.lastIndex=0,t-=1;return e}var U=/\d/,V=/\d\d/,K=/\d{3}/,$=/\d{4}/,Z=/[+-]?\d{6}/,B=/\d\d?/,q=/\d\d\d\d?/,Q=/\d\d\d\d\d\d?/,X=/\d{1,3}/,ee=/\d{1,4}/,ae=/[+-]?\d{1,6}/,te=/\d+/,se=/[+-]?\d+/,ne=/Z|[+-]\d\d:?\d\d/gi,de=/Z|[+-]\d\d(?::?\d\d)?/gi,re=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,_e={};function ie(...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    	// match: (RISBGZ (RISBGZ x {y}) {z})
    	// cond: z.InMerge(y.OutMask()) != nil
    	// result: (RISBGZ x {(*z.InMerge(y.OutMask())).RotateLeft(y.Amount)})
    	for {
    		z := auxToS390xRotateParams(v.Aux)
    		if v_0.Op != OpS390XRISBGZ {
    			break
    		}
    		y := auxToS390xRotateParams(v_0.Aux)
    		x := v_0.Args[0]
    		if !(z.InMerge(y.OutMask()) != nil) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    ordion-content>:last-child{margin-bottom:0}.uk-drop{display:none;position:absolute;z-index:1020;box-sizing:border-box;width:300px}.uk-drop.uk-open{display:block}[class*=uk-drop-top]{margin-top:-20px}[class*=uk-drop-bottom]{margin-top:20px}[class*=uk-drop-left]{margin-left:-20px}[class*=uk-drop-right]{margin-left:20px}.uk-drop-stack .uk-drop-grid>*{width:100%!important}.uk-dropdown{display:none;position:absolute;z-index:1020;box-sizing:border-box;min-width:200px;padding:25px;background:#fff;color:#666;box-shadow:0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
Back to top