Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 126 for REVERSED (0.11 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	}
    	if i > uint64(d.maxTableIndex()) {
    		return
    	}
    	// In the dynamic table, newer entries have lower indices.
    	// However, dt.ents[0] is the oldest entry. Hence, dt.ents is
    	// the reversed dynamic table.
    	dt := d.dynTab.table
    	return dt.ents[dt.len()-(int(i)-staticTable.len())], true
    }
    
    // DecodeFull decodes an entire block.
    //
    // TODO: remove this method and make it incremental later? This is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

          lhs_batch_dim_size++;
        } else if (absl::StrContains(out_eq, c)) {
          const int out_idx = out_eq.find(c);
          if (out_idx < lhs_out_idx_end) {
            // Left-hand equation is reversed in the output.
            return false;
          }
          lhs_out_idx_start = std::min(lhs_out_idx_start, out_idx);
          lhs_out_idx_end = std::max(lhs_out_idx_end, out_idx);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      const auto result_values = main_func_block.getTerminator()->getOperands();
      LiveOuts liveouts(result_values);
    
      // Copy ops to iterate because we will be modifying the block during
      // iteration. The ordering should be reversed because liveness analysis is a
      // bottom-up analysis. The terminator is not included because the return
      // statement is not included in any subgraph (e.g. XlaCallModuleOp) and is
      // untouched.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_LRV     uint32 = 0xE31E // FORMAT_RXY1       LOAD REVERSED (32)
    	op_LRVG    uint32 = 0xE30F // FORMAT_RXY1       LOAD REVERSED (64)
    	op_LRVGR   uint32 = 0xB90F // FORMAT_RRE        LOAD REVERSED (64)
    	op_LRVH    uint32 = 0xE31F // FORMAT_RXY1       LOAD REVERSED (16)
    	op_LRVR    uint32 = 0xB91F // FORMAT_RRE        LOAD REVERSED (32)
    	op_LT      uint32 = 0xE312 // FORMAT_RXY1       LOAD AND TEST (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/doc.go

    Adding 'Z' to the opcode for a load indicates zero extend; if omitted it is sign extend.
    Adding 'U' to a load or store indicates an update of the base register with the offset.
    Adding 'BR' to an opcode indicates byte-reversed load or store, or the order opposite
    of the expected endian order. If 'BR' is used then zero extend is assumed.
    
    Memory references n(Ra) indicate the address in Ra + n. When used with an update form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-decom.go

    			defer wk.Give()
    
    			if entry.isDir() {
    				return
    			}
    
    			fivs, err := entry.fileInfoVersions(bi.Name)
    			if err != nil {
    				return
    			}
    
    			// We need a reversed order for decommissioning,
    			// to create the appropriate stack.
    			versionsSorter(fivs.Versions).reverse()
    
    			var decommissioned, expired int
    			for _, version := range fivs.Versions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  7. guava-tests/test/com/google/common/collect/ImmutableListTest.java

                .createTestSuite());
        suite.addTest(
            ListTestSuiteBuilder.using(new BuilderReversedListGenerator())
                .named("ImmutableList, reversed")
                .withFeatures(CollectionSize.ANY, SERIALIZABLE, ALLOWS_NULL_QUERIES)
                .createTestSuite());
        suite.addTest(
            ListTestSuiteBuilder.using(new ImmutableListHeadSubListGenerator())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:True|False|None)\b/,number:/(?:\b(?=\d)|\B(?=\.))(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,operato...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/log/slog/logger_test.go

    		logger := New(wrappingHandler{Default().Handler()})
    		logger.Info("msg", "d", 4)
    		checkLogOutput(t, logbuf.String(), `logger_test.go:\d+: INFO msg d=4`)
    	})
    
    	// Once slog.SetDefault is called, the direction is reversed: the default
    	// log.Logger's output goes through the handler.
    	SetDefault(New(NewTextHandler(&slogbuf, &HandlerOptions{AddSource: true})))
    	log.Print("msg2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. src/sort/sort_test.go

    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable shuffled sorted %d ints (order)", n)
    	}
    	if !data.inOrder() {
    		t.Errorf("Stable shuffled sorted %d ints (stability)", n)
    	}
    
    	// sorted reversed
    	for i := 0; i < len(data); i++ {
    		data[i].a = len(data) - i
    	}
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable didn't sort %d ints", n)
    	}
    	if !data.inOrder() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top