Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for sigs (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    You should be careful when trusting a key globally.
    
    Try to limit it to the appropriate groups or artifacts:
    
    - a valid key may have been used to sign artifact `A` which you trust
    - later on, the key is stolen and used to sign artifact `B`
    
    It means you can trust the key `A` for the first artifact, probably only up to the released version before the key was stolen, but not for `B`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	MOVD $112, R22
    	MOVD $128, R23
    	MOVD $144, R24
    	MOVD $160, R25
    	MOVD $104, R26 // offset of sign+24(FP)
    
    	LXVD2X (R16)(CPOOL), PH
    	LXVD2X (R0)(CPOOL), PL
    
    	LXVD2X (R17)(P2ptr), Y2L
    	LXVD2X (R18)(P2ptr), Y2H
    	XXPERMDI Y2H, Y2H, $2, Y2H
    	XXPERMDI Y2L, Y2L, $2, Y2L
    
    	// Equivalent of VLREPG sign+24(FP), SEL1
    	LXVDSX   (R1)(R26), SEL1
    	VSPLTISB $0, ZER
    	VCMPEQUD SEL1, ZER, SEL1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	}
    	return *getSidSubAuthority(sid, idx)
    }
    
    // IsValid returns whether the SID has a valid revision and length.
    func (sid *SID) IsValid() bool {
    	return isValidSid(sid)
    }
    
    // Equals compares two SIDs for equality.
    func (sid *SID) Equals(sid2 *SID) bool {
    	return EqualSid(sid, sid2)
    }
    
    // IsWellKnown determines whether the SID matches the well-known sidType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers.go

    			Value: evictionapi.ThresholdValue{
    				Percentage: percentage,
    			},
    		}, nil
    	}
    	quantity, err := resource.ParseQuantity(val)
    	if err != nil {
    		return nil, err
    	}
    	if quantity.Sign() < 0 || quantity.IsZero() {
    		return nil, fmt.Errorf("eviction threshold %v must be positive: %s", signal, &quantity)
    	}
    	return &evictionapi.Threshold{
    		Signal:   signal,
    		Operator: operator,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			positive, _, num, denom, suffix, err := parseQuantityString(item.input)
    			if err != nil {
    				t.Errorf("%v: unexpected error: %v", item.input, err)
    				continue
    			}
    			if got.Sign() >= 0 && !positive || got.Sign() < 0 && positive {
    				t.Errorf("%v: positive was incorrect: %t", item.input, positive)
    				continue
    			}
    			var value string
    			if !positive {
    				value = "-"
    			}
    			value += num
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	// heapAddrBits is the number of bits in a heap address. On
    	// amd64, addresses are sign-extended beyond heapAddrBits. On
    	// other arches, they are zero-extended.
    	//
    	// On most 64-bit platforms, we limit this to 48 bits based on a
    	// combination of hardware and OS limitations.
    	//
    	// amd64 hardware limits addresses to 48 bits, sign-extended
    	// to 64 bits. Addresses where the top 16 bits are not either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    	}
    	sects := []struct {
    		xcoffSect *XcoffScnHdr64
    		segs      []*sym.Segment
    	}{
    		{f.sectText, []*sym.Segment{&Segtext}},
    		{f.sectData, []*sym.Segment{&Segrelrodata, &Segdata}},
    	}
    	for _, s := range sects {
    		s.xcoffSect.Srelptr = uint64(ctxt.Out.Offset())
    		n := uint32(0)
    		for _, seg := range s.segs {
    			for _, sect := range seg.Sections {
    				if sect.Name == ".text" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Trunc32to16 ...) => (Copy ...)
    
    // Zero-/Sign-extensions
    (ZeroExt8to16 ...) => (MOVBUreg ...)
    (ZeroExt8to32 ...) => (MOVBUreg ...)
    (ZeroExt16to32 ...) => (MOVHUreg ...)
    
    (SignExt8to16 ...) => (MOVBreg ...)
    (SignExt8to32 ...) => (MOVBreg ...)
    (SignExt16to32 ...) => (MOVHreg ...)
    
    (Signmask x) => (SRAconst x [31])
    (Zeromask x) => (SRAconst (RSBshiftRL <typ.Int32> x x [1]) [31]) // sign bit of uint32(x)>>1 - x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbSessionImpl.java

                            // - the specification does not clearly require that (it does for SMB3+)
                            // - there seem to be server implementations (known: EMC Isilon) that do not sign the final
                            // response
                            if ( negoResp.getSelectedDialect().atLeast(DialectVersion.SMB300) || response.isSigned() ) {
                                response.setDigest(dgst);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  10. src/math/all_test.go

    		t.Errorf("Remainder(5.9790119248836734e+200, 1.1258465975523544) = %g, want -0.4810497673014966", f)
    	}
    	// verify that sign is correct when r == 0.
    	test := func(x, y float64) {
    		if r := Remainder(x, y); r == 0 && Signbit(r) != Signbit(x) {
    			t.Errorf("Remainder(x=%f, y=%f) = %f, sign of (zero) result should agree with sign of x", x, y, r)
    		}
    	}
    	for x := 0.0; x <= 3.0; x += 1 {
    		for y := 1.0; y <= 3.0; y += 1 {
    			test(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top