Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 461 for sigset (0.24 sec)

  1. src/internal/coverage/encodemeta/encode.go

    	}
    	off += int64(b.stab.Size())
    
    	// Write functions
    	for _, f := range b.funcs {
    		var err error
    		off, err = b.emitFunc(w, off, f)
    		if err != nil {
    			return digest, err
    		}
    	}
    
    	// Back-patch the length.
    	totalLength := uint32(off)
    	if _, err := w.Seek(0, io.SeekStart); err != nil {
    		return digest, err
    	}
    	b.wrUint32(w, totalLength)
    	if b.werr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/KeyHasher.java

                messageDigest.update(b, off, len);
            }
    
            long getChecksum() {
                byte[] digest = messageDigest.digest();
                assert digest.length == 16;
                return new BigInteger(digest).longValue();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/go/scanner/scanner.go

    			default:
    				base, prefix = 8, '0'
    				digsep = 1 // leading 0
    			}
    		}
    		digsep |= s.digits(base, &invalid)
    	}
    
    	// fractional part
    	if s.ch == '.' {
    		tok = token.FLOAT
    		if prefix == 'o' || prefix == 'b' {
    			s.error(s.offset, "invalid radix point in "+litname(prefix))
    		}
    		s.next()
    		digsep |= s.digits(base, &invalid)
    	}
    
    	if digsep&1 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

                                throw ex;
        
                            uid = response.uid;
        
                            if( request.digest != null ) {
                                /* success - install the signing digest */
                                transport.digest = request.digest;
                            }
        
                            connectionState = 2;    
    
                            state = 0;
        
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  5. src/runtime/defs_linux_riscv64.go

    	s7  uint64
    	s8  uint64
    	s9  uint64
    	s10 uint64
    	s11 uint64
    	t3  uint64
    	t4  uint64
    	t5  uint64
    	t6  uint64
    }
    
    type user_fpregs_struct struct {
    	f [528]byte
    }
    
    type usigset struct {
    	us_x__val [16]uint64
    }
    
    type sigcontext struct {
    	sc_regs   user_regs_struct
    	sc_fpregs user_fpregs_struct
    }
    
    type stackt struct {
    	ss_sp    *byte
    	ss_flags int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			}
    			for _, digest := range append(matchingRDigests, matchingNDigests...) {
    				if !matchesPolicyRule(digest, &policyRule) {
    					t.Errorf("Fail: expected %s to match %#+v but it did not", fcfmt.Fmt(policyRule), digest)
    				}
    			}
    			for _, digest := range append(skippingRDigests, skippingNDigests...) {
    				if matchesPolicyRule(digest, &policyRule) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    // either input.
    func matchesFlowSchema(digest RequestDigest, flowSchema *flowcontrol.FlowSchema) bool {
    	for _, policyRule := range flowSchema.Spec.Rules {
    		if matchesPolicyRule(digest, &policyRule) {
    			return true
    		}
    	}
    	return false
    }
    
    func matchesPolicyRule(digest RequestDigest, policyRule *flowcontrol.PolicyRulesWithSubjects) bool {
    	if !matchesASubject(digest.User, policyRule.Subjects) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/mounter/Changelog

    ## v1 (Thu Oct 20 2016 Vishnu Kannan <******@****.***>)
      - Creating a container with mount tools pre-installed
      - Digest: sha256:9b3c1f04ad6b8947af4eb98f1eff2dc54c5664e3469b4cdf722ec5dd2a1dc064
    
    ## v2 (Fri Oct 28 2016 Vishnu Kannan <******@****.***>)
      - Adding netbase package.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 01 19:47:24 UTC 2016
    - 367 bytes
    - Viewed (0)
  9. tests/test_security_http_digest_description.py

    
    client = TestClient(app)
    
    
    def test_security_http_digest():
        response = client.get("/users/me", headers={"Authorization": "Digest foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Digest", "credentials": "foobar"}
    
    
    def test_security_http_digest_no_credentials():
        response = client.get("/users/me")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/runtime/defs_linux_amd64.go

    // cgo -cdefs defs_linux.go defs1_linux.go
    
    const (
    	_O_RDONLY   = 0x0
    	_O_WRONLY   = 0x1
    	_O_CREAT    = 0x40
    	_O_TRUNC    = 0x200
    	_O_NONBLOCK = 0x800
    	_O_CLOEXEC  = 0x80000
    )
    
    type usigset struct {
    	__val [16]uint64
    }
    
    type fpxreg struct {
    	significand [4]uint16
    	exponent    uint16
    	padding     [3]uint16
    }
    
    type xmmreg struct {
    	element [4]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top