Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cherries (0.19 sec)

  1. cmd/storage-datatypes.go

    	FSType     string
    	RootDisk   bool
    	Healing    bool
    	Scanning   bool
    	Endpoint   string
    	MountPath  string
    	ID         string
    	Rotational bool
    	Metrics    DiskMetrics
    	Error      string // carries the error over the network
    }
    
    // DiskMetrics has the information about XL Storage APIs
    // the number of calls of each API and the moving average of
    // the duration of each API.
    type DiskMetrics struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            loggingManager.attachSystemOutAndErr();
    
            // Making the daemon infrastructure log with DEBUG. This is only for the infrastructure!
            // Each build request carries it's own log level and it is used during the execution of the build (see LogToClient)
            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // We are preserving the original value if it had to be created,
            // because it carries information required by dependency resolution
            // to ensure project artifacts are actually created the first time around.
            // When the value is loaded from the store, the dependency information is lost.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. pkg/security/security.go

    		if meta, ok := metadata.FromIncomingContext(ac.GrpcContext); ok {
    			return meta.Get(header)
    		}
    	} else if ac.Request != nil {
    		return ac.Request.Header.Values(header)
    	}
    	return nil
    }
    
    // Caller carries the identity and authentication source of a caller.
    type Caller struct {
    	AuthSource AuthSource
    	Identities []string
    
    	KubernetesInfo KubernetesInfo
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. cmd/erasure-multipart.go

    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    // '.minio.sys/multipart/bucket/object/uploads.json' on all the
    // disks. `uploads.json` carries metadata regarding on-going multipart
    // operation(s) on the object.
    func (er erasureObjects) newMultipartUpload(ctx context.Context, bucket string, object string, opts ObjectOptions) (*NewMultipartUploadResult, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top