Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for Region (0.18 sec)

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

    // Returns true if we can eliminate the SliceOp. When the values of `begin` are
    // all 0s and `size[i]` is equal to either -1 or `input.shape[i]`
    // for each dim i, the output tensor is identical to `input`.
    bool CanOptimizeIdentitySliceOp(Value input, Attribute begin, Attribute size) {
      // Checks if `begin` and `size` are i32 or i64.
      auto begin_attr = mlir::dyn_cast<DenseIntElementsAttr>(begin);
      auto size_attr = mlir::dyn_cast<DenseIntElementsAttr>(size);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.api.core.v1.CinderVolumeSource": {
          "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
          "properties": {
            "fsType": {
    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. 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)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    com.is
    edu.is
    gov.is
    org.is
    int.is
    
    // it : https://en.wikipedia.org/wiki/.it
    it
    gov.it
    edu.it
    // Reserved geo-names (regions and provinces):
    // https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
    // Regions
    abr.it
    abruzzo.it
    aosta-valley.it
    aostavalley.it
    bas.it
    basilicata.it
    cal.it
    calabria.it
    cam.it
    campania.it
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/database/sql/sql.go

    	err = db.retry(func(strategy connReuseStrategy) error {
    		tx, err = db.begin(ctx, opts, strategy)
    		return err
    	})
    
    	return tx, err
    }
    
    // Begin starts a transaction. The default isolation level is dependent on
    // the driver.
    //
    // Begin uses [context.Background] internally; to specify the context, use
    // [DB.BeginTx].
    func (db *DB) Begin() (*Tx, error) {
    	return db.BeginTx(context.Background(), nil)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K 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