Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 150 for persistent (0.22 sec)

  1. pkg/apis/apps/v1/conversion.go

    	for k, v := range m {
    		ret[k] = v
    	}
    	return ret
    }
    
    // Convert_apps_StatefulSetSpec_To_v1_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    func Convert_v1_StatefulSetSpec_To_apps_StatefulSetSpec(in *appsv1.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
    - 6.2K bytes
    - Viewed (0)
  2. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/persistentvolumeclaim"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volume claims.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volume claims.
    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
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradients_test.cc

      std::vector<AbstractTensorHandle*> outputs(1);
      GradientRegistry registry;
      s = RegisterGradients(&registry);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
      auto tape = std::make_unique<Tape>(/*persistent=*/false);
      s = Execute(check_numerics_op.get(), ctx.get(), absl::MakeSpan(outputs),
                  &num_retvals, &forward_op, tape.get(), registry);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * A persistent store containing an object of type T.
     */
    public interface ObjectHolder<T> {
        /**
         * Fetches the value from this cache. A shared or exclusive lock is held while fetching the value, depending on implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. testing/integ-test/build.gradle.kts

        integTestImplementation(project(":process-services"))
        integTestImplementation(project(":core-api"))
        integTestImplementation(project(":resources"))
        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(project(":dependency-management"))
        integTestImplementation(project(":gradle-cli-main"))
        integTestImplementation(project(":launcher"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/build.gradle.kts

        api(project(":enterprise-operations"))
        api(project(":enterprise-logging"))
        api(project(":file-collections"))
        api(project(":jvm-services"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":resources"))
        api(project(":toolchains-jvm-shared"))
    
        api(libs.kotlinStdlib)
        api(libs.inject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/build.gradle.kts

        api(project(":files"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":serialization"))
        api(project(":snapshots"))
    
        api(libs.guava)
        api(libs.jsr305)
        api(libs.inject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. internal/http/close.go

    func DrainBody(respBody io.ReadCloser) {
    	// Callers should close resp.Body when done reading from it.
    	// If resp.Body is not closed, the Client's underlying RoundTripper
    	// (typically Transport) may not be able to reuse a persistent TCP
    	// connection to the server for a subsequent "keep-alive" request.
    	if respBody != nil {
    		// Drain any remaining Body and then close the connection.
    		// Without this closing connection would disallow re-using
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/build.gradle.kts

        api(project(":core-api"))
        api(project(":internal-integ-testing"))
        api(project(":internal-testing"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":persistent-cache"))
        api(project(":time"))
        api(project(":tooling-api"))
    
        api(libs.gradleProfiler) {
            because("Consumers need to instantiate BuildMutators")
        }
        api(libs.guava)
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_platform_info.h

    // Returns information about the platform from kernel context.
    XlaPlatformInfo XlaPlatformInfoFromDevice(DeviceBase* device);
    
    // Obtains persistent cache directory for executables that target a given device
    // based off xla flags. If you shouldn't use persistent caching, returns "".
    std::string GetPersistentCacheDirectory(
        const DeviceType& compilation_device_type);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top