Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for unroll (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCache.java

         */
        enum Skip {
    
            /**
             * Do not skip this test, this is the default.
             */
            DO_NOT_SKIP,
    
            /**
             * Use this reason on unrolled tests in super classes that fail on some subclasses.
             * Spock doesn't allow to override test methods and annotate them.
             */
            UNROLLED_FAILS_IN_SUBCLASS,
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/manip_grad_test.cc

    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/manip_ops.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace {
    
    using ops::Placeholder;
    using ops::Roll;
    
    class ManipGradTest : public ::testing::Test {
     protected:
      ManipGradTest() : scope_(Scope::NewRootScope()) {}
    
      void RunTest(const Output& x, const TensorShape& x_shape, const Output& y,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 19 12:19:42 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

                parentListEl = parentListEl.parentNode.closest("li");
            }
    
            // Only scroll if the device is a desktop.
            //
            // Mobile's `docs-navigation` is always at bottom of `content`,
            // so we should not slide down to where `docs-navigation` lays.
            if (desktopMediaQuery.matches) {
                // Scroll to center of the page
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

            return getXContentBuilderOutputStream((builder, params) -> xContent.toXContent(builder, params), mediaType);
        }
    
        public static long scroll(final String index, final Function<SearchHit, Boolean> callback) {
            final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. test/fixedbugs/issue59367.go

    	_ = b[3]             // bounds check
    	x := *p              // load a byte
    	y := uint32(x)       // zero extend to 32 bits
    	b[0] = byte(y >> 24) // compute ROLL
    	b[1] = byte(y >> 16)
    	b[2] = byte(y >> 8)
    	b[3] = byte(y)
    	nop()                // spill/restore ROLL
    	b[0] = byte(y >> 24) // use ROLL
    	b[1] = byte(y >> 16)
    	b[2] = byte(y >> 8)
    	b[3] = byte(y)
    }
    
    //go:noinline
    func f64(p *uint8, b []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache.go

    		panic("info must not be empty")
    	}
    	c.cache.Set(keyFunc(dataCtx), transformer, c.ttl)
    }
    
    func keyFunc(dataCtx value.Context) string {
    	return toString(dataCtx.AuthenticatedData())
    }
    
    // toString performs unholy acts to avoid allocations
    func toString(b []byte) string {
    	// unsafe.SliceData relies on cap whereas we want to rely on len
    	if len(b) == 0 {
    		return ""
    	}
    	// Copied from go 1.20.1 strings.Builder.String
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/manip_grad.cc

      auto shift = op.input(1);
      auto axis = op.input(2);
      auto grad_op = Roll(scope, grad_inputs[0], Neg(scope, shift), axis);
      grad_outputs->push_back(grad_op);
      grad_outputs->push_back(NoGradient());
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Roll", RollGrad);
    
    }  // namespace
    }  // namespace ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 19 12:19:42 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                "scenario",
                "",
                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
                description = "Which performance test to run. Should be the fully qualified class name dot (unrolled) method name. E.g. org.gradle.performance.regression.java.JavaUpToDatePerformanceTest.up-to-date assemble (parallel true)"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiConsole.java

            // we wait for additional text, we assume this row doesn't count as overlapping and use it as a status
            // line. In the opposite case, we want to scroll the progress area one more line. This avoid having an one
            // line gap between the text area and the status area.
            if (buildOutputArea.getWritePosition().col > 0) {
                numberOfOverlappedRows++;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfold_splat_constant_pass.cc

    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    #define DEBUG_TYPE "unfold-splat-constant-pass"
    
    #define GEN_PASS_DEF_UNFOLDSPLATCONSTANTPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    // Undo the MHLO::BroadcastInDimOp folding pattern on splat tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top