Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 356 for 0_80 (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go

    	O_FSYNC                          = 0x4010
    	O_LARGEFILE                      = 0x0
    	O_NDELAY                         = 0x80
    	O_NOATIME                        = 0x40000
    	O_NOCTTY                         = 0x800
    	O_NOFOLLOW                       = 0x20000
    	O_NONBLOCK                       = 0x80
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x4010
    	O_SYNC                           = 0x4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowApi
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	O_FSYNC                          = 0x4010
    	O_LARGEFILE                      = 0x2000
    	O_NDELAY                         = 0x80
    	O_NOATIME                        = 0x40000
    	O_NOCTTY                         = 0x800
    	O_NOFOLLOW                       = 0x20000
    	O_NONBLOCK                       = 0x80
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x4010
    	O_SYNC                           = 0x4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. src/encoding/asn1/asn1_test.go

    var int64TestData = []int64Test{
    	{[]byte{0x00}, true, 0},
    	{[]byte{0x7f}, true, 127},
    	{[]byte{0x00, 0x80}, true, 128},
    	{[]byte{0x01, 0x00}, true, 256},
    	{[]byte{0x80}, true, -128},
    	{[]byte{0xff, 0x7f}, true, -129},
    	{[]byte{0xff}, true, -1},
    	{[]byte{0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, true, -9223372036854775808},
    	{[]byte{0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, false, 0},
    	{[]byte{}, false, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  5. src/internal/coverage/slicereader/slr_test.go

    		}
    	}
    }
    
    func appendUleb128(b []byte, v uint) []byte {
    	for {
    		c := uint8(v & 0x7f)
    		v >>= 7
    		if v != 0 {
    			c |= 0x80
    		}
    		b = append(b, c)
    		if c&0x80 == 0 {
    			break
    		}
    	}
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowApi
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-classifierSubstitutionRule/groovy/consumer/build.gradle

        implementation 'co.paralleluniverse:quasar-core:0.8.0'
        implementation project(':lib')
    }
    // end::dependencies[]
    
    // tag::substitution_rule[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute module('co.paralleluniverse:quasar-core') using module('co.paralleluniverse:quasar-core:0.8.0') withoutClassifier()
        }
    }
    // end::substitution_rule[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 714 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-classifierSubstitutionRule/kotlin/consumer/build.gradle.kts

        implementation("co.paralleluniverse:quasar-core:0.8.0")
        implementation(project(":lib"))
    }
    // end::dependencies[]
    
    // tag::substitution_rule[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("co.paralleluniverse:quasar-core"))
                .using(module("co.paralleluniverse:quasar-core:0.8.0"))
                .withoutClassifier()
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 769 bytes
    - Viewed (0)
  9. src/cmd/internal/pkgpath/pkgpath.go

    			bsl.WriteByte(byte(c))
    			continue
    		}
    
    		if c < 0x80 {
    			if u, ok := v3UnderscoreCodes[byte(c)]; ok {
    				bsl.WriteByte('_')
    				bsl.WriteByte(u)
    				changed = true
    				continue
    			}
    		}
    
    		var enc string
    		switch {
    		case c < 0x80:
    			enc = fmt.Sprintf("_x%02x", c)
    		case c < 0x10000:
    			enc = fmt.Sprintf("_u%04x", c)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1.go

    	mask1b := byte(int8(t) >> 7) // mask1b is 0xFF iff one block is enough
    
    	separator := byte(0x80) // gets reset to 0x00 once used
    	for i := byte(0); i < chunk; i++ {
    		mask := byte(int8(i-nx) >> 7) // 0x00 after the end of data
    
    		// if we reached the end of the data, replace with 0x80 or 0x00
    		d.x[i] = (^mask & separator) | (mask & d.x[i])
    
    		// zero the separator once used
    		separator &= mask
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top