Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,854 for sig2 (0.07 sec)

  1. src/runtime/cgo_sigaction.go

    		// system stack already in use).
    
    		var ret int32
    
    		var g *g
    		if mainStarted {
    			g = getg()
    		}
    		sp := uintptr(unsafe.Pointer(&sig))
    		switch {
    		case g == nil:
    			// No g: we're on a C stack or a signal stack.
    			ret = callCgoSigaction(uintptr(sig), new, old)
    		case sp < g.stack.lo || sp >= g.stack.hi:
    			// We're no longer on g's stack, so we must be handling a signal.  It's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.17.md

    - Fix: resize Azure disk issue when it's in attached state ([#96705](https://github.com/kubernetes/kubernetes/pull/96705), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    - Fixed kubelet creating extra sandbox for pods with RestartPolicyOnFailure after all containers succeeded ([#92614](https://github.com/kubernetes/kubernetes/pull/92614), [@tnqn](https://github.com/tnqn)) [SIG Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  3. src/math/atanh.go

    	case x == 1:
    		return Inf(1)
    	case x == -1:
    		return Inf(-1)
    	}
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	var temp float64
    	switch {
    	case x < NearZero:
    		temp = x
    	case x < 0.5:
    		temp = x + x
    		temp = 0.5 * Log1p(temp+temp*x/(1-x))
    	default:
    		temp = 0.5 * Log1p((x+x)/(1-x))
    	}
    	if sign {
    		temp = -temp
    	}
    	return temp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. pkg/controller/certificates/signer/signer_test.go

    	}
    
    	certData, err := s.sign(x509cr, []capi.KeyUsage{
    		capi.UsageSigning,
    		capi.UsageKeyEncipherment,
    		capi.UsageServerAuth,
    		capi.UsageClientAuth,
    	},
    		// requesting a duration that is greater than TTL is ignored
    		csr.DurationToExpirationSeconds(3*time.Hour),
    		fakeClock.Now,
    	)
    	if err != nil {
    		t.Fatalf("failed to sign CSR: %v", err)
    	}
    	if len(certData) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    	// Expected input/output.
    	expect, ok := canonicalMethods[id.Name]
    	if !ok {
    		return
    	}
    
    	// Actual input/output
    	sign := pass.TypesInfo.Defs[id].Type().(*types.Signature)
    	args := sign.Params()
    	results := sign.Results()
    
    	// Special case: WriteTo with more than one argument,
    	// not trying at all to implement io.WriterTo,
    	// comes up often enough to skip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/math/lgamma.go

    //   4. For negative x, since (G is gamma function)
    //              -x*G(-x)*G(x) = pi/sin(pi*x),
    //      we have
    //              G(x) = pi/(sin(pi*x)*(-x)*G(-x))
    //      since G(-x) is positive, sign(G(x)) = sign(sin(pi*x)) for x<0
    //      Hence, for x<0, signgam = sign(sin(pi*x)) and
    //              lgamma(x) = log(|Gamma(x)|)
    //                        = log(pi/(|x*sin(pi*x)|)) - lgamma(-x);
    //      Note: one should avoid computing pi*(-x) directly in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/SignatorySupport.java

    /**
     * Convenience base class for {@link Signatory} implementations.
     */
    public abstract class SignatorySupport implements Signatory {
    
        @Override
        public byte[] sign(InputStream toSign) {
            ByteArrayOutputStream signature = new ByteArrayOutputStream();
            sign(toSign, signature);
            return signature.toByteArray();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "kind": {
                "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. pkg/kubelet/OWNERS

    approvers:
      - Random-Liu
      - dchen1107
      - derekwaynecarr
      - yujuhong
      - sjenning
      - mrunalp
      - klueska
    emeritus_approvers:
      - dashpole
      - vishh
    reviewers:
      - sig-node-reviewers # see https://github.com/kubernetes/kubernetes/blob/master/OWNERS_ALIASES#LC220:~:text=sig%2Dnode%2Dreviewers
      - tallclair
    labels:
      - area/kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 521 bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/scheduler/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-scheduling-maintainers
    reviewers:
      - sig-scheduling
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 19:42:06 UTC 2023
    - 150 bytes
    - Viewed (0)
Back to top