Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 195 for ellipsis (0.43 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Decl", Type, 0},
    		{"DeclStmt", Type, 0},
    		{"DeclStmt.Decl", Field, 0},
    		{"DeferStmt", Type, 0},
    		{"DeferStmt.Call", Field, 0},
    		{"DeferStmt.Defer", Field, 0},
    		{"Ellipsis", Type, 0},
    		{"Ellipsis.Ellipsis", Field, 0},
    		{"Ellipsis.Elt", Field, 0},
    		{"EmptyStmt", Type, 0},
    		{"EmptyStmt.Implicit", Field, 5},
    		{"EmptyStmt.Semicolon", Field, 0},
    		{"Expr", Type, 0},
    		{"ExprStmt", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Class); private boolean isPublicTestMethod(reflect.Method); private boolean isTestMethod(reflect.Method); } junit/framework/ComparisonCompactor.class package junit.framework; public synchronized class ComparisonCompactor { private static final String ELLIPSIS = ...; private static final String DELTA_END = ]; private static final String DELTA_START = [; private int fContextLength; private String fExpected; private String fActual; private int fPrefix; private int fSuffix; public void ComparisonCompactor(int,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    input subscripts. Furthermore, all dimensions mapping to the same axis label
    must be equal.
    
    Any of the input and output subscripts may contain at most a single ellipsis
    (`...`). These ellipsis are mapped against dimensions not corresponding to any
    named axis label. If two inputs contain ellipsis, then they are broadcasted
    according to standard NumPy broadcasting
    [rules](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses_test.go

    			"{1...27}",
    			endpointSet{
    				[]ellipses.ArgPattern{
    					[]ellipses.Pattern{
    						{
    							Prefix: "",
    							Suffix: "",
    							Seq:    getSequences(1, 27, 0),
    						},
    					},
    				},
    				nil,
    				[][]uint64{{9, 9, 9}},
    			},
    			true,
    		},
    		{
    			"/export/set{1...64}",
    			endpointSet{
    				[]ellipses.ArgPattern{
    					[]ellipses.Pattern{
    						{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa.go

    //
    // Operations involving private keys are implemented using constant-time
    // algorithms, as long as an [elliptic.Curve] returned by [elliptic.P224],
    // [elliptic.P256], [elliptic.P384], or [elliptic.P521] is used.
    package ecdsa
    
    // [FIPS 186-4] references ANSI X9.62-2005 for the bulk of the ECDSA algorithm.
    // That standard is not freely available, which is a problem in an open source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    :i})=>{i({".scroll-auto":{"scroll-behavior":"auto"},".scroll-smooth":{"scroll-behavior":"smooth"}})},textOverflow:({addUtilities:i})=>{i({".truncate":{overflow:"hidden","text-overflow":"ellipsis","white-space":"nowrap"},".overflow-ellipsis":{"text-overflow":"ellipsis"},".text-ellipsis":{"text-overflow":"ellipsis"},".text-clip":{"text-overflow":"clip"}})},hyphens:({addUtilities:i})=>{i({".hyphens-none":{hyphens:"none"},".hyphens-manual":{hyphens:"manual"},".hyphens-auto":{hyphens:"auto"}})},white...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/crypto/ecdsa/ecdsa_test.go

    	}
    }
    
    func randomPointForCurve(curve elliptic.Curve, rand io.Reader) error {
    	switch curve.Params() {
    	case elliptic.P224().Params():
    		_, _, err := randomPoint(p224(), rand)
    		return err
    	case elliptic.P256().Params():
    		_, _, err := randomPoint(p256(), rand)
    		return err
    	case elliptic.P384().Params():
    		_, _, err := randomPoint(p384(), rand)
    		return err
    	case elliptic.P521().Params():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/equal_test.go

    	if differentCurve.Curve == elliptic.P256() {
    		differentCurve.Curve = elliptic.P224()
    	} else {
    		differentCurve.Curve = elliptic.P256()
    	}
    	if public.Equal(differentCurve) {
    		t.Errorf("public keys with different curves are Equal")
    	}
    }
    
    func TestEqual(t *testing.T) {
    	t.Run("P224", func(t *testing.T) { testEqual(t, elliptic.P224()) })
    	if testing.Short() {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 05 18:05:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  9. src/crypto/x509/sec1.go

    // license that can be found in the LICENSE file.
    
    package x509
    
    import (
    	"crypto/ecdh"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"encoding/asn1"
    	"errors"
    	"fmt"
    	"math/big"
    )
    
    const ecPrivKeyVersion = 1
    
    // ecPrivateKey reflects an ASN.1 Elliptic Curve Private Key Structure.
    // References:
    //
    //	RFC 5915
    //	SEC1 - http://www.secg.org/sec1-v2.pdf
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa_s390x_test.go

    //go:build s390x && !purego
    
    package ecdsa
    
    import (
    	"crypto/elliptic"
    	"testing"
    )
    
    func TestNoAsm(t *testing.T) {
    	testingDisableKDSA = true
    	defer func() { testingDisableKDSA = false }()
    
    	curves := [...]elliptic.Curve{
    		elliptic.P256(),
    		elliptic.P384(),
    		elliptic.P521(),
    	}
    
    	for _, curve := range curves {
    		name := curve.Params().Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 834 bytes
    - Viewed (0)
Back to top