Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 566 for persistent (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

    /**
     * The persistent ID of a potential build on disk.
     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
     * Builds of the same checkout over time will share the same workspace ID.
     *
     * This ID is persisted in the root build's project cache dir.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/UserScopeId.java

     */
    
    package org.gradle.internal.scopeids.id;
    
    import org.gradle.internal.id.UniqueId;
    
    /**
     * A persistent ID of a user.
     *
     * It is effectively the Gradle user home dir.
     * That is, two builds by the same operating system user, potentially of different “projects”,
     * share the same user ID.
     *
     * This ID is persisted in the Gradle user home dir.
     * If this directory is destroyed, or a build is run with a different gradle user home,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/index.go

    }
    
    // accessModesIndexFunc is an indexing function that returns a persistent
    // volume's AccessModes as a string
    func accessModesIndexFunc(obj interface{}) ([]string, error) {
    	if pv, ok := obj.(*v1.PersistentVolume); ok {
    		modes := v1helper.GetAccessModesAsString(pv.Spec.AccessModes)
    		return []string{modes}, nil
    	}
    	return []string{""}, fmt.Errorf("object is not a persistent volume: %v", obj)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    	APIGroup string `json:"apiGroup,omitempty"`
    
    	// Resource is the name of the resource this rule applies to.
    	// For example, if the administrator wants to limit consumption
    	// of a storage resource associated with persistent volume claims,
    	// the value would be "persistentvolumeclaims".
    	Resource string `json:"resource"`
    
    	// For each intercepted request, the quota system will evaluate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K 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. 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)
  9. 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)
  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