Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for data_ (0.14 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

        name = "quantize_model_test",
        srcs = ["quantize_model_test.cc"],
        args = [
            "--test_model_file=$(location //tensorflow/lite/tools/optimize:testdata/single_conv_weights_min_0_max_plus_10.bin)",
        ],
        data = [
            "//tensorflow/lite/tools/optimize:testdata/add_with_const_input.bin",
            "//tensorflow/lite/tools/optimize:testdata/argmax.bin",
            "//tensorflow/lite/tools/optimize:testdata/broadcast_to.bin",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

        app.kubernetes.io/version: v2.52.0
        helm.sh/chart: prometheus-25.21.0
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: prometheus
      name: prometheus
      namespace: istio-system
    data:
      allow-snippet-annotations: "false"
      alerting_rules.yml: |
        {}
      alerts: |
        {}
      prometheus.yml: |
        global:
          evaluation_interval: 1m
          scrape_interval: 15s
          scrape_timeout: 10s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. cmd/storage-rest-client.go

    		}
    		select {
    		case <-ctx.Done():
    			return ctx.Err()
    		case resp <- file:
    		}
    	}
    }
    
    // CleanAbandonedData will read metadata of the object on disk
    // and delete any data directories and inline data that isn't referenced in metadata.
    func (client *storageRESTClient) CleanAbandonedData(ctx context.Context, volume string, path string) error {
    	values := make(url.Values)
    	values.Set(storageRESTVolume, volume)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                M data;
                if (transformer != null && transformer.getDataSerializer() != null) {
                    data = transformer.getDataSerializer().read(decoder);
                } else {
                    data = null;
                }
                return new ClassesDirCompiledScript<>(isEmpty, hasMethods, scriptBaseClass, scriptClassPath, targetScope, source, sourceHashCode, data);
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/AbstractFunctionalTypeTest.kt

        }
    
        object Runtime {
            private
            val local = ThreadLocal<Any?>()
    
            var value: Any?
                get() = local.get()
                set(value) = local.set(value)
        }
    
        data class BeanOf<T>(val value: T)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. cmd/storage-rest-common.go

    	storageRESTVolumes       = "volumes"
    	storageRESTDirPath       = "dir-path"
    	storageRESTFilePath      = "file-path"
    	storageRESTVersionID     = "version-id"
    	storageRESTReadData      = "read-data"
    	storageRESTHealing       = "healing"
    	storageRESTTotalVersions = "total-versions"
    	storageRESTSrcVolume     = "source-volume"
    	storageRESTSrcPath       = "source-path"
    	storageRESTDstVolume     = "destination-volume"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. cmd/storage-interface.go

    	ReadMultiple(ctx context.Context, req ReadMultipleReq, resp chan<- ReadMultipleResp) error
    	CleanAbandonedData(ctx context.Context, volume string, path string) error
    
    	// Write all data, syncs the data to disk.
    	// Should be used for smaller payloads.
    	WriteAll(ctx context.Context, volume string, path string, b []byte) (err error)
    
    	// Read all.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. internal/crypto/metadata.go

    	MetaSealedKeyKMS = "X-Minio-Internal-Server-Side-Encryption-Kms-Sealed-Key"
    
    	// MetaKeyID is the KMS master key ID used to generate/encrypt the data
    	// encryption key (DEK).
    	MetaKeyID = "X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id"
    	// MetaDataEncryptionKey is the sealed data encryption key (DEK) received from
    	// the KMS.
    	MetaDataEncryptionKey = "X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

        mlir_op_names.insert(std::move(mlir_name));
      }
    }
    
    std::string TfLiteToMlir(absl::string_view tflite_op_name) {
      StringRef op_name(tflite_op_name.data(), tflite_op_name.size());
      return op_name.lower();
    }
    
    std::unique_ptr<tflite::ModelT> CreateMutableModelFromFile(
        const tflite::Model* input_model) {
      auto copied_model = std::make_unique<tflite::ModelT>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

    class ConfigurationCacheClassLoaderCachingIntegrationTest extends PersistentBuildProcessIntegrationTest {
    
        def "reuses cached ClassLoaders"() {
    
            given: 'a Task that holds some static data'
            File staticDataLib = file("lib/StaticData.jar").tap {
                parentFile.mkdirs()
            }
            jarWithClasses(
                staticDataLib,
                StaticData: """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top