Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ellipsis (0.13 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          padded_begin.push_back(0);
          padded_end.push_back(0);
          padded_stride.push_back(1);
        }
    
        // Account for ellipsis mask.
        ++index;
    
        // After the ellipsis.
        for (; index < begin_shape[0];) {
          padded_begin.push_back(begin_dense_elem_attr.getValues<int32_t>()[index]);
          padded_end.push_back(end_dense_elem_attr.getValues<int32_t>()[index]);
          padded_stride.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    GTEST_API_ size_t GetThreadCount();
    
    // Passing non-POD classes through ellipsis (...) crashes the ARM
    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		"fe80::1%",
    		// IPv6 (without ellipsis) with too many fields for trailing embedded IPv4.
    		"ffff:ffff:ffff:ffff:ffff:ffff:ffff:192.168.140.255",
    		// IPv6 (with ellipsis) with too many fields for trailing embedded IPv4.
    		"ffff::ffff:ffff:ffff:ffff:ffff:ffff:192.168.140.255",
    		// IPv6 with invalid embedded IPv4.
    		"::ffff:192.168.140.bad",
    		// IPv6 with multiple ellipsis ::.
    		"fe80::1::1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    	x.typ = Typ[Invalid]
    
    	switch e := e.(type) {
    	case *ast.BadExpr:
    		goto Error // error was reported before
    
    	case *ast.Ident:
    		check.ident(x, e, nil, false)
    
    	case *ast.Ellipsis:
    		// ellipses are handled explicitly where they are legal
    		// (array composite literals and parameter lists)
    		check.error(e, BadDotDotDotSyntax, "invalid use of '...'")
    		goto Error
    
    	case *ast.BasicLit:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    func namedCurveFromOID(oid asn1.ObjectIdentifier) elliptic.Curve {
    	switch {
    	case oid.Equal(oidNamedCurveP224):
    		return elliptic.P224()
    	case oid.Equal(oidNamedCurveP256):
    		return elliptic.P256()
    	case oid.Equal(oidNamedCurveP384):
    		return elliptic.P384()
    	case oid.Equal(oidNamedCurveP521):
    		return elliptic.P521()
    	}
    	return nil
    }
    
    func oidFromNamedCurve(curve elliptic.Curve) (asn1.ObjectIdentifier, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    		switch pub := priv.Public().(type) {
    		case *ecdsa.PublicKey:
    			var curve CurveID
    			switch pub.Curve {
    			case elliptic.P256():
    				curve = CurveP256
    			case elliptic.P384():
    				curve = CurveP384
    			case elliptic.P521():
    				curve = CurveP521
    			default:
    				return supportsRSAFallback(unsupportedCertificateError(c))
    			}
    			var curveOk bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"bytes"
    	"context"
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"encoding/json"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/big"
    	"net"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"bytes"
    	"context"
    	"crypto"
    	"crypto/ecdh"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/x509"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"encoding/pem"
    	"fmt"
    	"os"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"bytes"
    	"context"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"internal/byteorder"
    	"io"
    	"math/big"
    	"net"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top