Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 218 for Indices (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            List<String> unexpectedInputs = inputs.collect { formatInputForAssert(it) }.reverse()
            for (int i in expectedInputs.indices.reverse()) {
                def expectedInput = expectedInputs[i]
                for (int j in unexpectedInputs.indices) {
                    if (expectedInput.matches(unexpectedInputs[j])) {
                        expectedInputs.removeAt(i)
                        unexpectedInputs.removeAt(j)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

      // CHECK-NOT: tf_mlrt.executeop(
      // CHECK: [[device:%.*]] = tf_mlrt_tpu.get_tpu_host_device
      // CHECK: [[var:%.*]] = tf_mlrt.executeop.device([[device]]){{.*}}op: \22ResourceGather\22
      // CHECK: [[rendezvous_key_base:%.*]] = tf_mlrt_tpu.compile_and_execute([[var]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/regexp/example_test.go

    	// Output:
    	// [["ab" ""]]
    	// [["axxb" "xx"]]
    	// [["ab" ""] ["axb" "x"]]
    	// [["axxb" "xx"] ["ab" ""]]
    }
    
    func ExampleRegexp_FindAllStringSubmatchIndex() {
    	re := regexp.MustCompile(`a(x*)b`)
    	// Indices:
    	//    01234567   012345678
    	//    -ab-axb-   -axxb-ab-
    	fmt.Println(re.FindAllStringSubmatchIndex("-ab-", -1))
    	fmt.Println(re.FindAllStringSubmatchIndex("-axxb-", -1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

              clEnumValN(OpSet::UNIFORM_QUANTIZED, "UNIFORM_QUANTIZED",
                         "Uses TF Uniform Quantized ops"))};
    };
    
    // Check if given indices in `val1` has same number of elements as given
    // indices in `val2`.
    bool HasEqualElementSize(Value val1, Value val2, ArrayRef<int> val1_indices,
                             ArrayRef<int> val2_indices) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/wasm/asm.go

    	// Instead, WebAssembly automatically assigns indices. Imported functions (section "import")
    	// have indices 0 to n. They are followed by native functions (sections "function" and "code")
    	// with indices n+1 and following.
    	//
    	// The following rules describe how wasm handles function indices and addresses:
    	//   PC_F = funcValueOffset + WebAssembly function index (not including the imports)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

    import org.codelibs.fess.thumbnail.ThumbnailManager;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocList;
    import org.codelibs.fess.util.MemoryUtil;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    public class IndexingHelper {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-decom.go

    	if len(indices) == 0 {
    		return errInvalidArgument
    	}
    
    	if z.SinglePool() {
    		return errInvalidArgument
    	}
    
    	// Make pool unwritable before decommissioning.
    	if err := z.StartDecommission(ctx, indices...); err != nil {
    		return err
    	}
    
    	go func() {
    		for _, idx := range indices {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

            // requestedAttributes.
            //
            // If the requested attributes are [ A, B, C ]
            // If the attribute precedence is [ C, A ]
            // The indices are [ A: 0, B: 1, C: 2 ]
            // The sorted indices are [ 2, 0 ]
            // The unsorted indices are [ 1 ]
            //
            final AttributeSelectionSchema.PrecedenceResult precedenceResult = schema.orderByPrecedence(requested.keySet());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. src/internal/bytealg/index_ppc64x.s

    index3loop:
    	VLOADSWAP(R7, R0, V2, V2)  // Load with correct order
    	VSLDOI   $1, V2, V3, V4    // string[1:17]
    	VSLDOI   $2, V2, V3, V9    // string[2:18]
    	VCMPEQUH V1, V2, V5        // compare hw even indices
    	VCMPEQUH V1, V4, V6        // compare hw odd indices
    	VCMPEQUB V8, V9, V10       // compare 3rd to last byte
    	VSEL     V6, V5, V31, V7   // Find 1st matching byte using mask
    	VAND     V7, V10, V7       // AND matched bytes with matched 3rd byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ArrayTable.java

     * implementations, except when the table is sparse.
     *
     * <p>Null row keys or column keys are not permitted.
     *
     * <p>This class provides methods involving the underlying array structure, where the array indices
     * correspond to the position of a row or column in the lists of allowed keys and values. See the
     * {@link #at}, {@link #set}, {@link #toArray}, {@link #rowKeyList}, and {@link #columnKeyList}
     * methods for more details.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top