Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 333 for Combine (0.18 sec)

  1. src/cmd/compile/internal/ssa/memcombine.go

    				continue
    			}
    
    			for n := f.Config.RegSize / size; n > 1; n /= 2 {
    				if combineStores(v, n) {
    					continue
    				}
    			}
    		}
    	}
    }
    
    // Try to combine the n stores ending in root.
    // Returns true if successful.
    func combineStores(root *Value, n int64) bool {
    	// Helper functions.
    	type StoreRecord struct {
    		store  *Value
    		offset int64
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/escape/Escapers.java

            if (hiChars == null && loChars == null) {
              // We expect this to be the common code path for most escapers.
              return null;
            }
            // Combine the characters and/or escaped sequences into a single array.
            int hiCount = hiChars != null ? hiChars.length : 1;
            int loCount = loChars != null ? loChars.length : 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

            putAll(entry.getKey(), entry.getValue());
          }
          return this;
        }
    
        @CanIgnoreReturnValue
        @Override
        Builder<K, V> combine(ImmutableMultimap.Builder<K, V> other) {
          super.combine(other);
          return this;
        }
    
        /**
         * {@inheritDoc}
         *
         * @since 8.0
         */
        @CanIgnoreReturnValue
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

            result.testClass("MixedTests").assertTestsExecuted('catAOk1', 'catBOk2')
            result.testClass("MixedTests").assertTestsSkipped('ignoredWithCategoryA')
        }
    
        def "can combine categories with custom runner"() {
            given:
            testSources.with {
                testCategory('CategoryA')
                sourceFile('LocaleHolder.java').withSource("""
                    import java.util.Locale;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

                                                    /*transpose_a=*/op.getAdjX(),
                                                    /*transpose_b=*/op.getAdjY());
        matmuls.emplace_back(matmul.getProduct());
      }
    
      // Combine the result of each individual MatMul into a rank-3 tensor.
      Type packed_type = RankedTensorType::get(
          {bcast.output_batch_size(), rows, cols}, element_type);
      const auto axis = rewriter.getI64IntegerAttr(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/covdata/metamerge.go

    	if *verbflag >= 3 {
    		fmt.Printf("visit pk=%d fid=%d func %s\n", pkgIdx, fnIdx, fd.Funcname)
    	}
    
    	var counters []uint32
    	key := pkfunc{pk: pkgIdx, fcn: fnIdx}
    	v, haveCounters := mm.pod.pmm[key]
    	if haveCounters {
    		counters = v.Counters
    	}
    
    	if pcombine {
    		// If the merge is running in "combine programs" mode, then hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/printer.go

    	p.print(close)
    }
    
    // combinesWithName reports whether a name followed by the expression x
    // syntactically combines to another valid (value) expression. For instance
    // using *T for x, "name *T" syntactically appears as the expression x*T.
    // On the other hand, using  P|Q or *P|~Q for x, "name P|Q" or name *P|~Q"
    // cannot be combined into a valid (value) expression.
    func combinesWithName(x Expr) bool {
    	switch x := x.(type) {
    	case *Operation:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableBiMap.java

          super.orderEntriesByValue(valueComparator);
          return this;
        }
    
        @Override
        @CanIgnoreReturnValue
        Builder<K, V> combine(ImmutableMap.Builder<K, V> builder) {
          super.combine(builder);
          return this;
        }
    
        /**
         * Returns a newly-created immutable bimap. The iteration order of the returned bimap is the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSetMultimap.java

            putAll(entry.getKey(), entry.getValue());
          }
          return this;
        }
    
        @CanIgnoreReturnValue
        @Override
        Builder<K, V> combine(ImmutableMultimap.Builder<K, V> other) {
          super.combine(other);
          return this;
        }
    
        /**
         * {@inheritDoc}
         *
         * @since 8.0
         */
        @CanIgnoreReturnValue
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/Escapers.java

            if (hiChars == null && loChars == null) {
              // We expect this to be the common code path for most escapers.
              return null;
            }
            // Combine the characters and/or escaped sequences into a single array.
            int hiCount = hiChars != null ? hiChars.length : 1;
            int loCount = loChars != null ? loChars.length : 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top