Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 121 for 0_80 (0.11 sec)

  1. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * 
         */
        public static final int SMB2_SHARE_CAP_CLUSTER = 0x40;
    
        /**
         * 
         */
        public static final int SMB2_SHARE_CAP_ASYMMETRIC = 0x80;
    
        private byte shareType;
        private int shareFlags;
        private int capabilities;
        private int maximalAccess;
    
    
        /**
         * @param config
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon May 23 14:35:20 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/proto.go

    	encode(*buffer)
    }
    
    func marshal(m message) []byte {
    	var b buffer
    	m.encode(&b)
    	return b.data
    }
    
    func encodeVarint(b *buffer, x uint64) {
    	for x >= 128 {
    		b.data = append(b.data, byte(x)|0x80)
    		x >>= 7
    	}
    	b.data = append(b.data, byte(x))
    }
    
    func encodeLength(b *buffer, tag int, len int) {
    	encodeVarint(b, uint64(tag)<<3|2)
    	encodeVarint(b, uint64(len))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. src/crypto/dsa/dsa.go

    			return err
    		}
    
    		qBytes[len(qBytes)-1] |= 1
    		qBytes[0] |= 0x80
    		q.SetBytes(qBytes)
    
    		if !q.ProbablyPrime(numMRTests) {
    			continue
    		}
    
    		for i := 0; i < 4*L; i++ {
    			if _, err := io.ReadFull(rand, pBytes); err != nil {
    				return err
    			}
    
    			pBytes[len(pBytes)-1] |= 1
    			pBytes[0] |= 0x80
    
    			p.SetBytes(pBytes)
    			rem.Mod(p, q)
    			rem.Sub(rem, one)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/runtime/defs_linux_386.go

    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART  = 0x10000000
    	_SA_ONSTACK  = 0x8000000
    	_SA_RESTORER = 0x4000000
    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    	BYTE $0x74; BYTE $0x71; BYTE $0x72; BYTE $0x73
    	BYTE $0x78; BYTE $0x75; BYTE $0x76; BYTE $0x77
    	BYTE $0xac; BYTE $0x69; BYTE $0xed; BYTE $0xee
    	BYTE $0xeb; BYTE $0xef; BYTE $0xec; BYTE $0xbf
    	BYTE $0x80; BYTE $0xfd; BYTE $0xfe; BYTE $0xfb
    	BYTE $0xfc; BYTE $0xba; BYTE $0xae; BYTE $0x59
    	BYTE $0x44; BYTE $0x45; BYTE $0x42; BYTE $0x46
    	BYTE $0x43; BYTE $0x47; BYTE $0x9c; BYTE $0x48
    	BYTE $0x54; BYTE $0x51; BYTE $0x52; BYTE $0x53
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/net/external_test.go

    				}
    			}
    			enableSocketConnect()
    		}
    	}
    }
    
    var (
    	literalAddrs4 = [...]string{
    		"%d.%d.%d.%d:80",
    		"www.google.com:80",
    		"%d.%d.%d.%d:http",
    		"www.google.com:http",
    		"%03d.%03d.%03d.%03d:0080",
    		"[::ffff:%d.%d.%d.%d]:80",
    		"[::ffff:%02x%02x:%02x%02x]:80",
    		"[0:0:0:0:0000:ffff:%d.%d.%d.%d]:80",
    		"[0:0:0:0:000000:ffff:%d.%d.%d.%d]:80",
    		"[0:0:0:0::ffff:%d.%d.%d.%d]:80",
    	}
    	literalAddrs6 = [...]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/runtime/defs_linux_amd64.go

    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART  = 0x10000000
    	_SA_ONSTACK  = 0x8000000
    	_SA_RESTORER = 0x4000000
    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/crypto/elliptic/params.go

    	Bz := new(big.Int).SetInt64(1)
    	x, y, z := new(big.Int), new(big.Int), new(big.Int)
    
    	for _, byte := range k {
    		for bitNum := 0; bitNum < 8; bitNum++ {
    			x, y, z = curve.doubleJacobian(x, y, z)
    			if byte&0x80 == 0x80 {
    				x, y, z = curve.addJacobian(Bx, By, Bz, x, y, z)
    			}
    			byte <<= 1
    		}
    	}
    
    	return curve.affineFromJacobian(x, y, z)
    }
    
    // ScalarBaseMult implements [Curve.ScalarBaseMult].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Controllen uint32
    	Flags      int32
    }
    
    const (
    	SizeofSockaddrInet4    = 0x10
    	SizeofSockaddrInet6    = 0x1c
    	SizeofSockaddrAny      = 0x404
    	SizeofSockaddrUnix     = 0x401
    	SizeofSockaddrDatalink = 0x80
    	SizeofLinger           = 0x8
    	SizeofIovec            = 0x10
    	SizeofIPMreq           = 0x8
    	SizeofIPv6Mreq         = 0x14
    	SizeofIPv6MTUInfo      = 0x20
    	SizeofMsghdr           = 0x30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

        repositories {
            gradlePluginPortal()
            google()
        }
    }
    
    plugins {                                                   // <2>
        id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
    }
    
    rootProject.name = "root-project"                           // <3>
    
    dependencyResolutionManagement {                            // <4>
        repositories {
            mavenCentral()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top