Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for perblock (0.8 sec)

  1. src/cmd/go/internal/work/exec.go

    		PkgPath: p.ImportPath,
    		PkgName: p.Name,
    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    		// depending on user demand.
    		Granularity: "perblock",
    		OutConfig:   p.Internal.Cover.Cfg,
    		Local:       p.Internal.Local,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    	{ECDSAWithSHA256, ecdsaSHA256p384CertPem},
    	{ECDSAWithSHA384, ecdsaSHA384p521CertPem},
    }
    
    func TestECDSA(t *testing.T) {
    	for i, test := range ecdsaTests {
    		pemBlock, _ := pem.Decode([]byte(test.pemCert))
    		cert, err := ParseCertificate(pemBlock.Bytes)
    		if err != nil {
    			t.Errorf("%d: failed to parse certificate: %s", i, err)
    			continue
    		}
    		if sa := cert.SignatureAlgorithm; sa != test.sigAlgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	}
    	for _, peerLock := range peerLocks {
    		if peerLock == nil {
    			continue
    		}
    		for k, v := range peerLock.Locks {
    			for _, lockReqInfo := range v {
    				if val, ok := entryMap[toEntry(lockReqInfo)]; ok {
    					val.ServerList = append(val.ServerList, peerLock.Addr)
    				} else {
    					entryMap[toEntry(lockReqInfo)] = lriToLockEntry(lockReqInfo, now, k, peerLock.Addr)
    				}
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      auto transpose = dyn_cast_or_null<TF::TransposeOp>(op.getX().getDefiningOp());
      if (!transpose) return {};
    
      // If the transpose ops are on different devices, we don't fold them.
      if (transpose->getBlock() != op->getBlock()) {
        tensorflow::DataType dtype;
        auto status = tensorflow::ConvertToDataType(
            op.getX().getType().cast<TensorType>().getElementType(), &dtype);
        if (status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // We make use of a separate builder to insert the source at the top of
        // the block.
        mlir::OpBuilder builder_at_begin(builder_.getBlock(),
                                         builder_.getBlock()->begin());
        auto source_op =
            builder_at_begin.create<mlir::tf_executor::NextIterationSourceOp>(
                loc, operands[0].getType(), result.attributes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top