Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 651 for sig1 (0.06 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/types2/index.go

    		x.mode = invalid
    		// TODO(gri) here we re-evaluate e.X - try to avoid this
    		x.typ = check.varType(e)
    		if isValid(x.typ) {
    			x.mode = typexpr
    		}
    		return false
    
    	case value:
    		if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    			// function instantiation
    			return true
    		}
    	}
    
    	// x should not be generic at this point, but be safe and check
    	check.nonGeneric(nil, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/edwards25519.go

    	YminusX.Subtract(&p.y, &p.x)
    
    	PP.Multiply(&YplusX, &q.YminusX) // flipped sign
    	MM.Multiply(&YminusX, &q.YplusX) // flipped sign
    	TT2d.Multiply(&p.t, &q.T2d)
    	ZZ2.Multiply(&p.z, &q.Z)
    
    	ZZ2.Add(&ZZ2, &ZZ2)
    
    	v.X.Subtract(&PP, &MM)
    	v.Y.Add(&PP, &MM)
    	v.Z.Subtract(&ZZ2, &TT2d) // flipped sign
    	v.T.Add(&ZZ2, &TT2d)      // flipped sign
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/call.go

    			// name needed
    			name = sig.recv.name
    			if name == "" {
    				name = "_"
    			}
    		}
    		params = append([]*Var{NewVar(sig.recv.pos, sig.recv.pkg, name, x.typ)}, params...)
    		x.mode = value
    		x.typ = &Signature{
    			tparams:  sig.tparams,
    			params:   NewTuple(params...),
    			results:  sig.results,
    			variadic: sig.variadic,
    		}
    
    		check.addDeclDep(m)
    
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            javaLibrary()
            uncheckedModule("org", "foo", "1.0") {
                withSignature {
                    keyring.sign(it, [(keyring.secretKey): keyring.password])
                }
            }
            uncheckedModule("org", "bar", "1.0") {
                withSignature {
                    keyring2.sign(it, [(keyring2.secretKey): keyring2.password])
                }
            }
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. src/math/big/float.go

    		}
    	}
    
    	return 0
    }
    
    // Handling of sign bit as defined by IEEE 754-2008, section 6.3:
    //
    // When neither the inputs nor result are NaN, the sign of a product or
    // quotient is the exclusive OR of the operands’ signs; the sign of a sum,
    // or of a difference x−y regarded as a sum x+(−y), differs from at most
    // one of the addends’ signs; and the sign of the result of conversions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        for (ImmutableList<Class<?>> sig : allSignatures(boolean.class)) {
          Method checkArgumentMethod =
              Preconditions.class.getMethod("checkArgument", sig.toArray(new Class<?>[] {}));
          checkArgumentMethod.invoke(null /* static method */, getParametersForSignature(true, sig));
    
          Object[] failingParams = getParametersForSignature(false, sig);
          InvocationTargetException ite =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1_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
    - 41.5K bytes
    - Viewed (0)
  10. src/math/big/rat.go

    	return x.a.Sign()
    }
    
    // IsInt reports whether the denominator of x is 1.
    func (x *Rat) IsInt() bool {
    	return len(x.b.abs) == 0 || x.b.abs.cmp(natOne) == 0
    }
    
    // Num returns the numerator of x; it may be <= 0.
    // The result is a reference to x's numerator; it
    // may change if a new value is assigned to x, and vice versa.
    // The sign of the numerator corresponds to the sign of x.
    func (x *Rat) Num() *Int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top