Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 119 for index (0.09 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	case obj.TYPE_NONE:
    		return C_NONE
    
    	case obj.TYPE_REG:
    		return c.aclassreg(a.Reg)
    
    	case obj.TYPE_MEM:
    		if a.Index != 0 {
    			if a.Name != obj.NAME_NONE || a.Offset != 0 {
    				c.ctxt.Logf("Unexpected Instruction operand index %d offset %d class %d \n", a.Index, a.Offset, a.Class)
    
    			}
    			return C_XOREG
    		}
    		switch a.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			return C_ADDR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        int64_t index = 0;
        for (int64_t s : slice_sizes.getValues<int64_t>()) {
          if (llvm::count(start_index_map, index)) {
            if (s != 1) {
              return rewriter.notifyMatchFailure(gather_op,
                                                 "unsupported slice sizes");
            }
          } else {
            if (s != operand_type.getShape()[index]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	}
    	type row struct {
    		age  int
    		name string
    	}
    	got := []row{}
    	index := 0
    	for rows.Next() {
    		if index == 2 {
    			cancel()
    			waitForRowsClose(t, rows)
    		}
    		var r row
    		err = rows.Scan(&r.age, &r.name)
    		if err != nil {
    			if index == 2 {
    				break
    			}
    			t.Fatalf("Scan: %v", err)
    		}
    		if index == 2 && err != context.Canceled {
    			t.Fatalf("Scan: %v; want context.Canceled", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      node_builder.Input(inputs);
      return opts.FinalizeBuilder(&node_builder);
    }
    
    Node* ArgOp(int index, DataType type, const GraphDefBuilder::Options& opts) {
      return ops::SourceOp("_Arg",
                           opts.WithAttr("T", type).WithAttr("index", index));
    }
    
    Node* RetOp(int index, ops::NodeOut a, const GraphDefBuilder::Options& opts) {
      if (opts.HaveError()) return nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // All entries are 4 bytes. The index of the identifier (divided by 4) is the language tag.
    // For 2-byte language identifiers, the two successive bytes have the following meaning:
    //   - if the first letter of the 2- and 3-letter ISO codes are the same:
    //     the second and third letter of the 3-letter ISO code.
    //   - otherwise: a 0 and a by 2 bits right-shifted index into altLangISO3.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // Serialized string:
    //   "\08\02*\0A\08\03\1A\02\02\01\22\02\00\01*\0A\08\03\1A\02\02\01\22\02\00\01"
    
    // Test that an attempt to map an invalid cluster output index to core program
    // index is caught. The output has sharding type TUPLE, which causes the
    // cluster output index to be invalid for core 0.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    fam.pk
    biz.pk
    web.pk
    gov.pk
    gob.pk
    gok.pk
    gon.pk
    gop.pk
    gos.pk
    info.pk
    
    // pl http://www.dns.pl/english/index.html
    // Submitted by registry
    pl
    com.pl
    net.pl
    org.pl
    // pl functional domains (http://www.dns.pl/english/index.html)
    aid.pl
    agro.pl
    atm.pl
    auto.pl
    biz.pl
    edu.pl
    gmina.pl
    gsm.pl
    info.pl
    mail.pl
    miasta.pl
    media.pl
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    // both match a GET request for "/index.html", but the former pattern
    // matches all other GET and HEAD requests, while the latter matches any
    // request for "/index.html" that uses a different method.
    // The patterns conflict.
    //
    // # Trailing-slash redirection
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        def "failure in transformation chain propagates (position in chain: #failingTransform)"() {
            given:
    
            Closure<String> possiblyFailingTransform = { index ->
                index == failingTransform ? "FailingDuplicator" : "Duplicator"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      string customOption = ?;
    }
    
    class TFL_ConvOp<string mnemonic, string opSummary, int index,
                     list<Trait> additional_traits = []> :
        TFL_Op<mnemonic,[Pure,
                         AccumulatorUniformScale<2, 0, 1>,
                         AffineQuantizedOpInterface,
                         AffineOpCoefficient<index, 1>,
                         QuantizableResult,
                         TFL_SparseOp] # additional_traits> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top