Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,865 for runAction (0.15 sec)

  1. src/crypto/sha512/sha512.go

    		return errors.New("crypto/sha512: invalid hash state identifier")
    	}
    	switch {
    	case d.function == crypto.SHA384 && string(b[:len(magic384)]) == magic384:
    	case d.function == crypto.SHA512_224 && string(b[:len(magic512_224)]) == magic512_224:
    	case d.function == crypto.SHA512_256 && string(b[:len(magic512_256)]) == magic512_256:
    	case d.function == crypto.SHA512 && string(b[:len(magic512)]) == magic512:
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      // Run TFRT initialization function to pre-instantiate fallback kernels.
      RunTfrtInitializer();
    }
    
    llvm::SmallVector<Tensor> RuntimeFallbackExecutor::Execute(
        llvm::StringRef function_name, llvm::ArrayRef<Tensor> arguments) {
      // Get the kernel entrypoint function.
      const Function* compute = bef_file_->GetFunction(function_name);
      CHECK(compute) << "Entrypoint function not found";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

      mutex_lock lock(mu_);
      auto it =
          cluster_compile_stats_.emplace(function.name(), ClusterCompileStats{})
              .first;
      RegisterExecutionForCluster(function, &it->second);
    }
    
    Status DeviceCompilationProfiler::RegisterCompilation(
        const NameAttrList& function, int64_t compile_time_us,
        bool used_persistent_cache) {
      metrics::UpdateXlaCompilationTime(compile_time_us);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/internal/abi/symtab.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    // A FuncFlag records bits about a function, passed to the runtime.
    type FuncFlag uint8
    
    const (
    	// FuncFlagTopFrame indicates a function that appears at the top of its stack.
    	// The traceback routine stop at such a function and consider that a
    	// successful, complete traversal of the stack.
    	// Examples of TopFrame functions include goexit, which appears
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.prerelease-lifecycle.go

    )
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *FlowSchema) APILifecycleIntroduced() (major, minor int) {
    	return 1, 26
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/background-tasks.md

    ```Python hl_lines="14"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    `.add_task()` receives as arguments:
    
    * A task function to be run in the background (`write_notification`).
    * Any sequence of arguments that should be passed to the task function in order (`email`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/FunctionCodecTest.kt

        @Test
        fun `defers evaluation of Function objects`() {
            assertDeferredEvaluationOf(function()) {
                invoke()
            }
        }
    
        @Test
        fun `defers evaluation of dynamic Function fields`() {
            assertDeferredEvaluationOf(BeanOf(function())) {
                value()
            }
        }
    
        @Test
        fun `defers evaluation of static Function fields`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/io/fs/walk.go

    // named "a" in that directory, the walk function will be called with
    // argument "dir/a".
    //
    // The d argument is the [DirEntry] for the named path.
    //
    // The error result returned by the function controls how [WalkDir]
    // continues. If the function returns the special value [SkipDir], WalkDir
    // skips the current directory (path if d.IsDir() is true, otherwise
    // path's parent directory). If the function returns the special value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/schemaBuidler/FunctionExtractorTest.kt

        @Test
        fun `adding function may have a configuring lambda if it returns the added value`() {
            val schema = schemaFromTypes(ReceiverOne::class, listOf(ReceiverOne::class))
            val function = schema.dataClassesByFqName.values.single().memberFunctions.single()
            assertIs<FunctionSemantics.AddAndConfigure>(function.semantics)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedVariantCache.java

        /**
         * Caches resolved variants created by the given function if the identifier is eligible for caching.
         *
         * @param key key for the cache
         * @param mappingFunction function to create a {@link ResolvedVariant}
         * @return the resolved variant created by the function or a cached instance, if available
         */
        ResolvedVariant computeIfAbsent(Identifier key, Function<? super Identifier, ? extends ResolvedVariant> mappingFunction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top