Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 160 for src1 (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      const CallGraph call_graph(module);
    
      // Visit functions bottom up when doing the analysis. Note that SCC iterator
      // has the property that if there is an edge from SCC1->SCC2, SCC1 is visited
      // after SCC2, i.e., the graph is traversed bottom up just the way we want.
      auto scc_begin = llvm::scc_begin(&call_graph);
      auto scc_end = llvm::scc_end(&call_graph);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/printer_test.go

    	w.buf = append(w.buf, data...)
    	n = len(data)
    	if len(w.buf) > 10 {
    		err = io.ErrShortBuffer
    	}
    	return
    }
    
    func TestPrintError(t *testing.T) {
    	const src = "package p; var x int"
    	ast, err := Parse(nil, strings.NewReader(src), nil, nil, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var buf shortBuffer
    	_, err = Fprint(&buf, ast, 0)
    	if err == nil || err != io.ErrShortBuffer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/image/png/reader.go

    	case *image.Alpha16:
    		srcPix = src.(*image.Alpha16).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 2
    	case *image.Gray:
    		srcPix = src.(*image.Gray).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 1
    	case *image.Gray16:
    		srcPix = src.(*image.Gray16).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    		// Leading src fragment.
    		src = subtractb(src, (off+7)/8)
    		if frag := off & 7; frag != 0 {
    			bits |= uintptr(*src) >> (8 - frag) << nbits
    			src = add1(src)
    			nbits += frag
    			c -= frag
    		}
    		// Main loop: load one byte, write another.
    		// The bits are rotating through the bit buffer.
    		for i := c / 8; i > 0; i-- {
    			bits |= uintptr(*src) << nbits
    			src = add1(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    http://www.apache.org/ c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\src\main\java src/main/scripts c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\src\test\java c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\target\classes c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\target\test-classes c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\src\main\resources c:\home\Brett\cvs\maven-2\maven-components-release\maven-...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    // possible semantic version after vX.Y.Z. The leading 0 segment in the prerelease string
    // ensures that the pseudo-version compares less than possible future explicit prereleases
    // like vX.Y.(Z+1)-rc1 or vX.Y.(Z+1)-1.
    //
    // If the most recent tagged version before the target commit is vX.Y.Z-pre or vX.Y.Z-pre+incompatible,
    // then the pseudo-version uses form (4) or (5), making it a slightly later prerelease.
    
    package module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/crypto/tls/tls.go

    	}
    
    	return cert, nil
    }
    
    // Attempt to parse the given private key DER block. OpenSSL 0.9.8 generates
    // PKCS #1 private keys by default, while OpenSSL 1.0.0 generates PKCS #8 keys.
    // OpenSSL ecparam generates SEC1 EC private keys for ECDSA. We try all three.
    func parsePrivateKey(der []byte) (crypto.PrivateKey, error) {
    	if key, err := x509.ParsePKCS1PrivateKey(der); err == nil {
    		return key, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    // package references and follows the equivalent [SEC 1, Version 2.0].
    //
    // [FIPS 186-4]: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf
    // [SEC 1, Version 2.0]: https://www.secg.org/sec1-v2.pdf
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/ecdh"
    	"crypto/elliptic"
    	"crypto/internal/bigmod"
    	"crypto/internal/boring"
    	"crypto/internal/boring/bbig"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK:      %[[bcast_mul2:.+]] = "mhlo.dynamic_broadcast_in_dim"(%[[mul2]], {{.*}}) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<8xf32>, tensor<4xindex>) -> tensor<8x8x8x8xf32>
      // CHECK-NEXT: %[[mul3:.*]] = mhlo.multiply %[[grad]], %[[bcast_mul2]] : tensor<8x8x8x8xf32>
      // CHECK-NEXT: %[[scale_backprop:.*]] = mhlo.multiply %[[scr1]], %[[scr2]] : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner_test.go

    		got.init(strings.NewReader(want.src), func(line, col uint, msg string) {
    			t.Errorf("%s:%d:%d: %s", want.src, line, col, msg)
    		}, 0)
    		got.next()
    		if got.tok != want.tok {
    			t.Errorf("%s: got %s; want %s", want.src, got.tok, want.tok)
    			continue
    		}
    		if (got.tok == _Name || got.tok == _Literal) && got.lit != want.src {
    			t.Errorf("%s: got %q; want %q", want.src, got.lit, want.src)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
Back to top