Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 435 for persistent (0.15 sec)

  1. tensorflow/cc/saved_model/bundle_v2.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // Helpers for loading the persistent representation of a SavedModelV2.
    // Please note that this is depended on by code that does not make use of
    // the full runtime and its dependencies should be restricted.
    
    #ifndef TENSORFLOW_CC_SAVED_MODEL_BUNDLE_V2_H_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:32:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/device_compiler_test_helper.h

    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    
    // A listener to inspect the use of XLA's persistent compilation cache entries.
    class JitCompilationListener : public XlaActivityListener {
     public:
      Status Listen(
          const XlaAutoClusteringActivity& auto_clustering_activity) override {
        return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/build.gradle.kts

        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":language-jvm"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":problems-api"))
        api(project(":process-services"))
        api(project(":snapshots"))
        api(project(":test-suites-base"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin_test.go

    	}{
    		{
    			name:      "construct spec1 from original persistent spec",
    			specVolID: "test.vol.id",
    			volHandle: "testvol-handle1",
    
    			originSpec: volume.NewSpecFromPersistentVolume(makeTestPV("test.vol.id", 20, testDriver, "testvol-handle1"), true),
    			podUID:     types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    		},
    		{
    			name:       "construct spec2 from original persistent spec",
    			specVolID:  "spec2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. platforms/documentation/samples/build.gradle.kts

    dependencies {
        integTestImplementation(project(":base-services"))
        integTestImplementation(project(":core-api"))
        integTestImplementation(project(":process-services"))
        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(libs.groovy)
        integTestImplementation(libs.slf4jApi)
        integTestImplementation(libs.guava)
        integTestImplementation(libs.ant)
        integTestImplementation(libs.samplesCheck) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/build.gradle.kts

        integTestImplementation(project(":internal-testing"))
        testFixturesImplementation(project(":internal-integ-testing"))
    
        crossVersionTestImplementation(project(":persistent-cache"))
        crossVersionTestImplementation(libs.slf4jApi)
        crossVersionTestImplementation(libs.guava)
        crossVersionTestImplementation(libs.ant)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-local/build.gradle.kts

        api(projects.stdlibJavaExtensions)
        api(project(":build-cache"))
        api(project(":build-cache-spi"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":persistent-cache"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        testImplementation(project(":model-core"))
        testImplementation(project(":file-collections"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 849 bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Protocol.kt

     */
    enum class Protocol(private val protocol: String) {
      /**
       * An obsolete plaintext framing that does not use persistent sockets by default.
       */
      HTTP_1_0("http/1.0"),
    
      /**
       * A plaintext framing that includes persistent connections.
       *
       * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta1/conversion.go

    	} else {
    		out.Selector = ""
    	}
    	return nil
    }
    
    // Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    func Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec(in *appsv1beta1.StatefulSetSpec, out *apps.StatefulSetSpec, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. pkg/registry/core/persistentvolume/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/persistentvolume"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volumes.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volumes.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top