Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for rapide (0.31 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

    // RUN: tac-opt-all-backends -tfl-raise-target-subgraphs %s -split-input-file | FileCheck %s
    // RUN: tac-opt-all-backends -tfl-raise-target-subgraphs="skip-raise-cpu-ops=true" %s -split-input-file | FileCheck %s --check-prefixes=CHECK-SKIP-CPU
    // RUN: tac-opt-all-backends -tfl-raise-target-subgraphs="ignore-inference-type=true" %s -split-input-file | FileCheck %s --check-prefixes=CHECK-IGNORE-INFERENCE-TYPE
    
    module {
    func.func @simpleWhile(%arg0: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    //
    // This object maps the name of a TensorFlow operation to a description of the
    // API to generate for it, as defined by the ApiDef protocol buffer (
    // https://www.tensorflow.org/code/tensorflow/core/framework/api_def.proto)
    //
    // The ApiDef messages are typically used to generate convenience wrapper
    // functions for TensorFlow operations in various language bindings.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=copy-multiple-files-with-flat-filter-example]"]
    ====
    
    One thing to note, as demonstrated in the following diagram, is that only the PDFs that reside directly in the `reports` directory are copied:
    
    image::copy-with-flat-filter-example.png[]
    
    You can include files in subdirectories by using an Ant-style glob pattern (`\**/*`), as done in this updated example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.pvi.ptid1",
    				"application/vnd.pwg-multiplexed",
    				"application/vnd.pwg-xhtml-print+xml",
    				"application/vnd.qualcomm.brew-app-res",
    				"application/vnd.quark.quarkxpress",
    				"application/vnd.rapid",
    				"application/vnd.recordare.musicxml",
    				"application/vnd.recordare.musicxml+xml",
    				"application/vnd.renlearn.rlprint",
    				"application/vnd.rim.cod",
    				"application/vnd.rn-realmedia",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      auto* api_def_buf =
          TF_ApiDefMapGet(api_def_map, op_name.c_str(), op_name.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    
      tensorflow::ApiDef api_def;
      EXPECT_TRUE(api_def.ParseFromArray(api_def_buf->data, api_def_buf->length));
      EXPECT_EQ(op_name, api_def.graph_op_name());
      EXPECT_EQ(R"doc(Used to test C API)doc", api_def.summary());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	var maximumAllowedReplicas int32
    
    	var possibleLimitingCondition string
    	var possibleLimitingReason string
    
    	minimumAllowedReplicas = hpaMinReplicas
    
    	// Do not scaleup too much to prevent incorrect rapid increase of the number of master replicas caused by
    	// bogus CPU usage report from heapster/kubelet (like in issue #32304).
    	scaleUpLimit := calculateScaleUpLimit(currentReplicas)
    
    	if hpaMaxReplicas > scaleUpLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    					// Support statefulsets/headless services with TCP ports, and empty service address field.
    					// Instead of generating a single 0.0.0.0:Port listener, generate a listener
    					// for each instance. HTTP services can happily reside on 0.0.0.0:PORT and use the
    					// wildcard route match to get to the appropriate IP through original dst clusters.
    					if bind.Primary() == "" && service.Resolution == model.Passthrough &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // As we need to test multiple URI schemes we need a parameterized test.
    // Furthermore, since each test creates and deletes files, we will use the same
    // fixture to create new directories in `SetUp`. Each directory will reside in
    // `::testing::TempDir()`, will use a RNG component and the test name. This
    // ensures that two consecutive runs are unlikely to clash.
    class ModularFileSystemTest : public ::testing::TestWithParam<std::string> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// bound we get from heapGoalinternal is less than that.
    	if minTrigger < c.heapMarked {
    		minTrigger = c.heapMarked
    	}
    
    	// If we let the trigger go too low, then if the application
    	// is allocating very rapidly we might end up in a situation
    	// where we're allocating black during a nearly always-on GC.
    	// The result of this is a growing heap and ultimately an
    	// increase in RSS. By capping us at a point >0, we're essentially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    // storage class. When PostObjectRestore API is called, a temporary copy of the object
    // is restored locally to the bucket on source cluster until the restore expiry date.
    // The copy that was transitioned continues to reside in the transitioned tier.
    func (er erasureObjects) RestoreTransitionedObject(ctx context.Context, bucket, object string, opts ObjectOptions) error {
    	return er.restoreTransitionedObject(ctx, bucket, object, opts)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top