Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 192 for nobytes (0.89 sec)

  1. src/syscall/ztypes_freebsd_amd64.go

    	Datalen     uint8
    	Mtu         uint64
    	Metric      uint64
    	Baudrate    uint64
    	Ipackets    uint64
    	Ierrors     uint64
    	Opackets    uint64
    	Oerrors     uint64
    	Collisions  uint64
    	Ibytes      uint64
    	Obytes      uint64
    	Imcasts     uint64
    	Omcasts     uint64
    	Iqdrops     uint64
    	Noproto     uint64
    	Hwassist    uint64
    	Epoch       int64
    	Lastchange  Timeval
    }
    
    type IfData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/DefaultMethodArgsSerializerTest.groovy

        def "serializes an empty args array"() {
            expect:
            def arraySerializer = serializer.forTypes([] as Class[])
            serialize([] as Object[], arraySerializer).length == 0
            toBytes([] as Object[], arraySerializer).length == 0
        }
    
        def "serializes multiple args using the serializer registry that can serialize all types"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    	Obytes     uint64
    	Imcasts    uint64
    	Omcasts    uint64
    	Iqdrops    uint64
    	Oqdrops    uint64
    	Noproto    uint64
    	Hwassist   uint64
    	_          [8]byte
    	_          [16]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    	Obytes     uint64
    	Imcasts    uint64
    	Omcasts    uint64
    	Iqdrops    uint64
    	Oqdrops    uint64
    	Noproto    uint64
    	Hwassist   uint64
    	_          [8]byte
    	_          [16]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. src/runtime/sys_plan9_arm.s

    	MOVW    $SYS_OPEN, R0
    	SWI	$0
    	MOVW	R0, ret+12(FP)
    	RET
    
    //func pread(fd int32, buf unsafe.Pointer, nbytes int32, offset int64) int32
    TEXT runtime·pread(SB),NOSPLIT,$0-24
    	MOVW    $SYS_PREAD, R0
    	SWI	$0
    	MOVW	R0, ret+20(FP)
    	RET
    
    //func pwrite(fd int32, buf unsafe.Pointer, nbytes int32, offset int64) int32
    TEXT runtime·pwrite(SB),NOSPLIT,$0-24
    	MOVW    $SYS_PWRITE, R0
    	SWI	$0
    	MOVW	R0, ret+20(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 29 14:15:04 UTC 2021
    - 7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/DES.java

        };
    
    
     /// Squash bytes down to ints.
        public static void squashBytesToInts( byte[] inBytes, int inOff, int[] outInts,
                                               int outOff, int intLen ) {
    
            for ( int i = 0; i < intLen; ++i )
                outInts[outOff + i] =
                    ( ( inBytes[inOff + i * 4    ] & 0xff ) << 24 ) |
                    ( ( inBytes[inOff + i * 4 + 1] & 0xff ) << 16 ) |
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_arm64.s

    	HASHUPDATEPARITY
    
    	VADD	V18.S4, V6.S4, V16.S4
    	HASHUPDATEPARITY
    
    	VADD	V18.S4, V7.S4, V16.S4
    	HASHUPDATEPARITY
    
    	SUB	$64, R3, R3                                  // message length - 64bytes, then compare with 64bytes
    	VADD	V2.S4, V0.S4, V0.S4
    	VADD	V1.S4, V20.S4, V20.S4
    	CBNZ	R3, blockloop
    
    sha1ret:
    
    	VST1.P	[V0.S4], 16(R0)                               // store hash value H(dcba)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                if (hasUnsupportedVersionInJar()) {
                    // Every Java version starting from lowestUnsupportedVersion should see this jar as unsupported.
                    builder.put(JarUtil.toVersionedPath(lowestUnsupportedVersionInJar, MarkerResource.RESOURCE_NAME), MarkerResource.NOT_TRANSFORMED.asBytes());
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    		b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    			b.AddBytes(toBytes(k))
    		})
    		b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    			b.AddBytes(annotations[k])
    		})
    	}
    
    	return b.Bytes()
    }
    
    // toBytes performs unholy acts to avoid allocations
    func toBytes(s string) []byte {
    	// unsafe.StringData is unspecified for the empty string, so we provide a strict interpretation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    	Obytes     uint64
    	Imcasts    uint64
    	Omcasts    uint64
    	Iqdrops    uint64
    	Oqdrops    uint64
    	Noproto    uint64
    	Hwassist   uint64
    	_          [8]byte
    	_          [16]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top