Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 454 for persistent (0.13 sec)

  1. src/runtime/malloc.go

    	}
    
    	mp := acquirem()
    	var persistent *persistentAlloc
    	if mp != nil && mp.p != 0 {
    		persistent = &mp.p.ptr().palloc
    	} else {
    		lock(&globalAlloc.mutex)
    		persistent = &globalAlloc.persistentAlloc
    	}
    	persistent.off = alignUp(persistent.off, align)
    	if persistent.off+size > persistentChunkSize || persistent.base == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/build.gradle.kts

        api(project(":build-operations"))
        api(project(":core-api"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":problems-api"))
        api(project(":snapshots"))
    
        implementation(projects.time)
        implementation(project(":logging"))
        implementation(projects.enterpriseOperations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core-api/build.gradle.kts

        api(projects.stdlibJavaExtensions)
        api(project(":build-cache-spi"))
        api(project(":logging-api"))
        api(project(":base-services"))
        api(project(":files"))
        api(project(":resources"))
        api(project(":persistent-cache"))
        api(project(":declarative-dsl-api"))
        api(libs.jsr305)
        api(libs.groovy)
        api(libs.groovyAnt)
        api(libs.guava)
        api(libs.ant)
        api(libs.inject)
    
        implementation(projects.io)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    // pvcEvaluator knows how to evaluate quota usage for persistent volume claims
    type pvcEvaluator struct {
    	// listFuncByNamespace knows how to list pvc claims
    	listFuncByNamespace generic.ListFuncByNamespace
    }
    
    // Constraints verifies that all required resources are present on the item.
    func (p *pvcEvaluator) Constraints(required []corev1.ResourceName, item runtime.Object) error {
    	// no-op for persistent volume claims
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  5. docs/docker/README.md

      -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    To create a MinIO container with persistent storage, you need to map local persistent directories from the host OS to virtual config. To do this, run the below commands
    
    ### GNU/Linux and macOS
    
    ```sh
    mkdir -p ~/minio/data
    
    docker run \
      -p 9000:9000 \
      -p 9001:9001 \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  6. platforms/extensibility/unit-test-fixtures/build.gradle.kts

        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":build-operations"))
        api(project(":concurrent"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":persistent-cache"))
        api(project(":serialization"))
        api(project(":time"))
        api(project(":build-process-services"))
    
        implementation(project(":build-state"))
        implementation(project(":file-collections"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/build.gradle.kts

        api(project(":stdlib-java-extensions"))
        api(project(":base-services"))
        api(project(":core-api"))
        api(project(":file-collections"))
        api(project(":jvm-services"))
        api(project(":persistent-cache"))
        api(project(":core"))
    
        implementation(project(":logging"))
        implementation(libs.guava)
        implementation(libs.slf4jApi)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

     * All composite participants also share the same build scope ID.
     * That is, all “nested” build trees (in terms of GradleLauncher, GradleBuild etc.) share the same build invocation ID.
     *
     * This ID is, by definition, not persistent.
     */
    @ServiceScope(Scope.BuildTree.class)
    public final class BuildInvocationScopeId extends ScopeId {
    
        public BuildInvocationScopeId(UniqueId id) {
            super(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_test.go

    				// This *must* fail because a CSIDriver.Spec.VolumeLifecycleModes entry "persistent"
    				// is required when a driver object is available.
    				if err == nil {
    					t.Fatalf("csiTest.VolumeAll volPlugin.NewMounter should have failed for persistent volume due to lack of support for persistent volumes, got: %+v, %s", mounter, err)
    				}
    				return
    			}
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/build.gradle.kts

        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":logging"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":problems-api"))
        api(project(":resources"))
        api(project(":security"))
        api(project(":snapshots"))
        api(project(":build-process-services"))
    
        api(libs.bouncycastlePgp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top