Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 651 for sig1 (0.28 sec)

  1. src/runtime/softfloat64.go

    			mant++
    		}
    		mant >>= 1
    		exp++
    		if mant < 1<<mantbits64 {
    			return sign | mant
    		}
    	}
    	return sign | uint64(exp-bias64)<<mantbits64 | mant&(1<<mantbits64-1)
    }
    
    func fpack32(sign, mant uint32, exp int, trunc uint32) uint32 {
    	mant0, exp0, trunc0 := mant, exp, trunc
    	if mant == 0 {
    		return sign
    	}
    	for mant < 1<<mantbits32 {
    		mant <<= 1
    		exp--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  2. pkg/config/schema/metadata.yaml

        - "v1alpha2"
        protoPackage: "sigs.k8s.io/gateway-api/apis/v1"
        proto: "k8s.io.gateway_api.api.v1alpha1.GRPCRouteSpec"
        statusProto: "k8s.io.gateway_api.api.v1alpha1.GRPCRouteStatus"
        statusProtoPackage: "sigs.k8s.io/gateway-api/apis/v1"
    
      - kind: "TCPRoute"
        plural: "tcproutes"
        group: "gateway.networking.k8s.io"
        version: "v1alpha2"
        protoPackage: "sigs.k8s.io/gateway-api/apis/v1alpha2"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    func VerifyPSS(pub *PublicKey, hash crypto.Hash, digest []byte, sig []byte, opts *PSSOptions) error {
    	if boring.Enabled {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return err
    		}
    		if err := boring.VerifyRSAPSS(bkey, hash, digest, sig, opts.saltLength()); err != nil {
    			return ErrVerification
    		}
    		return nil
    	}
    	if len(sig) != pub.Size() {
    		return ErrVerification
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/node_container_manager_linux.go

    		if cm.NodeConfig.SystemReserved != nil {
    			value.Sub(cm.NodeConfig.SystemReserved[k])
    		}
    		if cm.NodeConfig.KubeReserved != nil {
    			value.Sub(cm.NodeConfig.KubeReserved[k])
    		}
    		if value.Sign() < 0 {
    			// Negative Allocatable resources don't make sense.
    			value.Set(0)
    		}
    		result[k] = value
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/crypto/rsa/pkcs1v15.go

    // channels, or if an attacker has control of part of the inputs.
    func VerifyPKCS1v15(pub *PublicKey, hash crypto.Hash, hashed []byte, sig []byte) error {
    	if boring.Enabled {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return err
    		}
    		if err := boring.VerifyRSAPKCS1v15(bkey, hash, hashed, sig); err != nil {
    			return ErrVerification
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/math/erf.go

    			y := r / s
    			temp = x + x*y
    		}
    		if sign {
    			return -temp
    		}
    		return temp
    	}
    	if x < 1.25 { // 0.84375 <= |x| < 1.25
    		s := x - 1
    		P := pa0 + s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))))
    		Q := 1 + s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6)))))
    		if sign {
    			return -erx - P/Q
    		}
    		return erx + P/Q
    	}
    	if x >= 6 { // inf > |x| >= 6
    		if sign {
    			return -1
    		}
    		return 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		u := (x >> 23) & 1
    		w := (x >> 21) & 1
    		p := (x >> 24) & 1
    		if p == 0 && w == 1 {
    			return nil
    		}
    		sign := int8(+1)
    		if u == 0 {
    			sign = -1
    		}
    		mode := AddrMode(uint8(p<<1) | uint8(w^1))
    		return Mem{Base: Rn, Mode: mode, Sign: sign, Index: Rm, Shift: typ, Count: count}
    
    	case arg_mem_R_pm_imm12_offset:
    		// Treat [<Rn>,#+/-<imm12>] like [<Rn>{,#+/-<imm12>}]{!}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

                    sign(jar)
                }
            """
    
            when:
            executer.withEnvironmentVars([
                ORG_GRADLE_PROJECT_secretKey: secretKeyWithPassword,
                ORG_GRADLE_PROJECT_password: password
            ])
            succeeds("signJar")
    
            then:
            executed(":signJar")
            file("build", "libs", "sign-1.0.jar.asc").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. OWNERS_ALIASES

        - liggitt
        - mikedanese
      # SIG Release
      release-engineering-approvers:
        - cpanato # SIG Technical Lead / RelEng subproject owner / Release Manager
        - jeremyrickard # SIG Chair / RelEng subproject owner / Release Manager
        - justaugustus # SIG Chair / RelEng subproject owner / Release Manager
        - puerco # SIG Technical Lead / RelEng subproject owner / Release Manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/runtime/signal_unix.go

    	if sig == _SIGPROF {
    		return
    	}
    
    	t := &sigtable[sig]
    	if t.flags&_SigNotify != 0 {
    		ensureSigM()
    		enableSigChan <- sig
    		<-maskUpdatedChan
    		if atomic.Cas(&handlingSig[sig], 0, 1) {
    			atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
    			setsig(sig, abi.FuncPCABIInternal(sighandler))
    		}
    	}
    }
    
    // sigdisable disables the Go signal handler for the signal sig.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top