Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 287 for captures (0.18 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

      // Capture is at index "10"
      saved.add_bound_inputs(10);
    
      // `func` has 4 inputs
      FunctionDef func = FuncDefWithNumInputsOutputs(4, 0);
    
      // `captures` only has a capture for index 5
      std::unordered_map<int, std::unique_ptr<TensorHandleConvertible>> captures;
      captures[5] = std::make_unique<DummyCapture>(context(), 10);
    
      std::unique_ptr<TFConcreteFunction> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

      std::vector<ImmediateExecutionTensorHandle*> captures;
      captures.reserve(capture_node_ids.size());
      for (int capture_node_id : capture_node_ids) {
        ImmediateExecutionTensorHandle* capture_handle;
        TF_RETURN_IF_ERROR(TensorHandleFromNode(capture_node_id, obj_graph, objects,
                                                &capture_handle));
        captures.push_back(capture_handle);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

      TF_RETURN_IF_ERROR(ValidateSavedFunctionCompatibleWithFunctionDef(
          saved_concrete_function, function_def));
    
      // Copy over captures
      std::vector<ImmediateExecutionTensorHandle*> captures;
      captures.reserve(saved_concrete_function.bound_inputs_size());
      for (int bound_input : saved_concrete_function.bound_inputs()) {
        auto iter = captured_objects.find(bound_input);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            }
        }
    
        def "captures output from buildSrc"() {
            given:
            configureNestedBuild('buildSrc')
            file('buildSrc/build.gradle') << "jar.dependsOn 'foo'"
            file("build.gradle") << ""
    
            when:
            succeeds "help"
    
            then:
            assertNestedTaskOutputTracked(':buildSrc')
        }
    
        def "captures output from composite builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/regexp/example_test.go

    	option1: value1
    	option2: value2
    
    	# another comment line
    	option3: value3
    `)
    
    	// Regex pattern captures "key: value" pair from the content.
    	pattern := regexp.MustCompile(`(?m)(?P<key>\w+):\s+(?P<value>\w+)$`)
    
    	// Template to convert "key: value" to "key=value" by
    	// referencing the values captured by the regex pattern.
    	template := []byte("$key=$value\n")
    
    	result := []byte{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

                assertNotOutput("STDERR from plugins block")
                // TODO logging is not captured yet
                assertOutputContains("LIFECYCLE")
                assertOutputContains("WARN")
                assertHasErrorOutput("ERROR")
            }
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/12955")
        fun `captures output of schema collection but not of concurrent tasks`() {
    
            val repeatOutput = 50
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        [SingleBlockImplicitTerminator<"ReturnOp">]> {
      let summary = [{
    The `tf_device.launch` op launches containing operations on target device.
      }];
    
      let description = [{
    This op captures all needed live-in values.
      }];
    
      let arguments = (ins
        StrAttr:$device
      );
    
      let results = (outs
        Variadic<AnyType>:$results
      );
    
      let regions = (region SizedRegion<1>:$body);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. cmd/globals.go

    	globalBrowserConfig browser.Config
    
    	// This flag is set to 'true' when MINIO_UPDATE env is set to 'off'. Default is false.
    	globalInplaceUpdateDisabled = false
    
    	// Captures site name and region
    	globalSite config.Site
    
    	// MinIO local server address (in `host:port` format)
    	globalMinioAddr = ""
    
    	// MinIO default port, can be changed through command line.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      RevivedObjects revived_objects;
      TF_RETURN_IF_ERROR(partially_revived_objects.Build(
          context, bundle.saved_object_graph(), &revived_objects));
    
      // Revive function library functions as concrete functions without captures.
      // This is necessary because object graph functions may refer to functions
      // _not_ in the object graph: A while loop, for example, will create two
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

         *
         * @param type the {@literal Class}
         * @param <T> the parameterized type of the given {@literal Class}
         * @return the {@literal TypeOf} that captures the generic type of the given {@literal Class}
         */
        public static <T> TypeOf<T> typeOf(Class<T> type) {
            return new TypeOf<T>(
                ModelType.of(typeWhichCannotBeNull(type))) {
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top