Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,102 for z$ (0.04 sec)

  1. cmd/testdata/xl-many-parts.meta

    ������������� �!�"�#�$�%�&�'�(�)�*�+�,�-�.�/�0�1�2�3�4�5�6�7�8�9�:�;�<�=�>�?�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������������������������������������������������������������������������������������������������������������������...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication-metrics_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 3
    	// string "Curr"
    	o = append(o, 0x83, 0xa4, 0x43, 0x75, 0x72, 0x72)
    	o = msgp.AppendInt(o, z.Curr)
    	// string "Avg"
    	o = append(o, 0xa3, 0x41, 0x76, 0x67)
    	o = msgp.AppendFloat32(o, z.Avg)
    	// string "Max"
    	o = append(o, 0xa3, 0x4d, 0x61, 0x78)
    	o = msgp.AppendInt(o, z.Max)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat_ppc64x.s

    	PCALIGN	$16
    
    loop:
    	MOVD	0(R4), R14	// x[i]
    	MOVD	8(R4), R16	// x[i+1]
    	MOVD	16(R4), R18	// x[i+2]
    	MOVD	24(R4), R20	// x[i+3]
    	MOVD	0(R3), R15	// z[i]
    	MOVD	8(R3), R17	// z[i+1]
    	MOVD	16(R3), R19	// z[i+2]
    	MOVD	24(R3), R21	// z[i+3]
    	MULLD	R5, R14, R10	// low x[i]*y
    	MULHDU	R5, R14, R11	// high x[i]*y
    	ADDC	R15, R10
    	ADDZE	R11
    	ADDC	R9, R10
    	ADDZE	R11, R9
    	MULLD	R5, R16, R14	// low x[i+1]*y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:32:43 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. test/abi/named_return_stuff.go

    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    	fmt.Println()
    
    	y = K("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z = K("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. internal/bucket/bandwidth/monitor_gen.go

    // EncodeMsg implements msgp.Encodable
    func (z BucketBandwidthReport) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 0
    	_ = z
    	err = en.Append(0x80)
    	if err != nil {
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z BucketBandwidthReport) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 0
    	_ = z
    	o = append(o, 0x80)
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. cmd/metacache-walk_gen.go

    func (z *WalkDirOptions) Msgsize() (s int) {
    	s = 1 + 7 + msgp.StringPrefixSize + len(z.Bucket) + 8 + msgp.StringPrefixSize + len(z.BaseDir) + 10 + msgp.BoolSize + 15 + msgp.BoolSize + 13 + msgp.StringPrefixSize + len(z.FilterPrefix) + 10 + msgp.StringPrefixSize + len(z.ForwardTo) + 6 + msgp.IntSize + 7 + msgp.StringPrefixSize + len(z.DiskID)
    	return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    			attempt++
    			continue
    		}
    		break
    	}
    
    	return z, nil
    }
    
    func (z *erasureServerPools) NewNSLock(bucket string, objects ...string) RWLocker {
    	poolID := hashKey(z.distributionAlgo, "", len(z.serverPools), z.deploymentID)
    	if len(objects) >= 1 {
    		poolID = hashKey(z.distributionAlgo, objects[0], len(z.serverPools), z.deploymentID)
    	}
    	return z.serverPools[poolID].NewNSLock(bucket, objects...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr3PluginIntegrationTest.groovy

                }
    
                list    :   item (item)*
                        ;
    
                item    :
                    ID
                    | INT
                    ;
    
                ID  :   ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
                    ;
    
                INT :   '0'..'9'+
                    ;
            """
    
            file("grammar-builder/src/main/antlr/AnotherGrammar.g") << """grammar AnotherGrammar;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/math/big/arith_386.s

    E4:	CMPL BX, BP		// i < n
    	JL L4
    
    	MOVL AX, c+28(FP)
    	RET
    
    
    // func shlVU(z, x []Word, s uint) (c Word)
    TEXT ·shlVU(SB),NOSPLIT,$0
    	MOVL z_len+4(FP), BX	// i = z
    	SUBL $1, BX		// i--
    	JL X8b			// i < 0	(n <= 0)
    
    	// n > 0
    	MOVL z+0(FP), DI
    	MOVL x+12(FP), SI
    	MOVL s+24(FP), CX
    	MOVL (SI)(BX*4), AX	// w1 = x[n-1]
    	MOVL $0, DX
    	SHLL CX, AX, DX		// w1>>ŝ
    	MOVL DX, c+28(FP)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (SUB (SRAconst [c] y) x) => (RSBshiftRA x y [c])
    (SUB x (SLL y z)) => (SUBshiftLLreg x y z)
    (SUB (SLL y z) x) => (RSBshiftLLreg x y z)
    (SUB x (SRL y z)) => (SUBshiftRLreg x y z)
    (SUB (SRL y z) x) => (RSBshiftRLreg x y z)
    (SUB x (SRA y z)) => (SUBshiftRAreg x y z)
    (SUB (SRA y z) x) => (RSBshiftRAreg x y z)
    (SBC x (SLLconst [c] y) flags) => (SBCshiftLL x y [c] flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top