Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for begins (0.15 sec)

  1. src/database/sql/sql_test.go

    	db := newTestDB(t, "")
    	defer closeDB(t, db)
    
    	tx, err := db.Begin()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer tx.Rollback()
    
    	_, err = tx.Query("SELECT|t1|name|")
    	if err == nil {
    		t.Fatal("Error expected")
    	}
    }
    
    // Tests fix for issue 4433, that retries in Begin happen when
    // conn.Begin() returns ErrBadConn
    func TestTxErrBadConn(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    `)
    
    // pemEd25519Key is the example from RFC 8410, Section 4.
    var pemEd25519Key = `
    -----BEGIN PUBLIC KEY-----
    MCowBQYDK2VwAyEAGb9ECWmEzf6FQbrBZ9w7lshQhqowtrbLDFw4rXAxZuE=
    -----END PUBLIC KEY-----
    `
    
    // pemX25519Key was generated from pemX25519Key with "openssl pkey -pubout".
    var pemX25519Key = `
    -----BEGIN PUBLIC KEY-----
    MCowBQYDK2VuAyEA5yGXrH/6OzxuWEhEWS01/f4OP+Of3Yrddy6/J1kDTVM=
    -----END PUBLIC KEY-----
    `
    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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

           else_branch_lifted_arg_nodes_and_outside_compilation_nodes) {
        auto iter = std::find(outside_compilation_nodes.begin(),
                              outside_compilation_nodes.end(), pair.second);
        TF_RET_CHECK(iter != outside_compilation_nodes.end());
        int index = iter - outside_compilation_nodes.begin();
        else_branch_lifted_arg_nodes[index] = pair.first;
      }
    
      // Append lifted args' types to If node's Tin attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // and `finalize`.
        regions.push_back(RegionSuccessor(
            &getNext(), getNext().front().getArguments().slice(0, num)));
        regions.push_back(RegionSuccessor(
            &getFinalize(), getFinalize().front().getArguments().slice(0, num)));
      } else {
        // `finalize` branches back to the op itself, not passing any arguments.
        regions.push_back(RegionSuccessor());
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        } else {
          state.operands.push_back(dst->getOperand(input - 1));
        }
      }
      state.attributes.assign(dst->getAttrs().begin(), dst->getAttrs().end());
      state.types.assign(dst->getResultTypes().begin(),
                         dst->getResultTypes().end());
      builder_.setInsertionPoint(dst);
      auto* new_dst = builder_.create(state);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        }
    
        return success();
      }
    
      void rewrite(stablehlo::UniformQuantizeOp op,
                   PatternRewriter& rewriter) const override {
        Type output_type = *op->getResultTypes().begin();
        rewriter.replaceOpWithNewOp<TFL::QuantizeOp>(
            op, output_type, /*input=*/op.getOperand(),
            /*qtype=*/TypeAttr::get(output_type));
      }
    };
    
    // stablehlo.uniform_dequantize -> tfl.dequantize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                                ArrayRef<func::FuncOp> functions,
                                                int64_t max_iterations);
    
      // Propagates shapes to regions given the shapes of the inputs of the regions.
      // All regions provided in `regions` are assumed to have inputs of type
      // `input_types`.
      // Returns a failure() on error, otherwise returns true to indicate that it
      // reached convergence, false otherwise.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

              // just compare set equality not list equality.
              std::unordered_set<string> a_set(av.list().s().begin(),
                                               av.list().s().end());
              std::unordered_set<string> b_set(bv.list().s().begin(),
                                               bv.list().s().end());
              return a_set == b_set;
            } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK-LABEL: strided_slice_with_constant_attributes
      // CHECK-DAG: [[BEGIN:%cst.*]] = arith.constant dense<-1> : tensor<1xi32>
      // CHECK-DAG: [[END:%cst.*]] = arith.constant dense<0> : tensor<1xi32>
      // CHECK-DAG: [[STRIDES:%cst.*]] = arith.constant dense<1> : tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
Back to top