Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 351 for manner (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/en/docs/img/sponsors/cryptapi-banner.svg

    cryptapi-banner.svg...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 08 15:04:04 GMT 2021
    - 130.6K bytes
    - Click Count (0)
  2. docs/en/docs/img/sponsors/greptile-banner.png

    greptile-banner.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Dec 01 20:06:57 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  3. docs/en/docs/img/sponsors/bump-sh-banner.svg

    bump-sh-banner.svg...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Oct 04 22:51:10 GMT 2023
    - 37.6K bytes
    - Click Count (0)
  4. docs/en/docs/img/sponsors/docarray-top-banner.svg

    docarray-top-banner.svg...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Aug 24 08:43:44 GMT 2022
    - 107.4K bytes
    - Click Count (0)
  5. docs/en/docs/img/sponsors/jina-ai-banner.png

    jina-ai-banner.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Jul 14 12:37:37 GMT 2022
    - 13.8K bytes
    - Click Count (0)
  6. docs/en/docs/img/sponsors/platform-sh-banner.png

    platform-sh-banner.png...
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Jun 10 20:58:15 GMT 2023
    - 6.2K bytes
    - Click Count (0)
  7. cmd/bucket-replication.go

    	return dsc
    }
    
    // replicate deletes to the designated replication target if replication configuration
    // has delete marker replication or delete replication (MinIO extension to allow deletes where version id
    // is specified) enabled.
    // Similar to bucket replication for PUT operation, soft delete (a.k.a setting delete marker) and
    // permanent deletes (by specifying a version ID in the delete operation) have three states "Pending", "Complete"
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 118.2K bytes
    - Click Count (0)
  8. impl/maven-core/plugin-manager.txt

     */
    
    This document outlines the concerns of a general plugin manager that would be used in conjunction with any Plexus-based application. The following outlined concerns are an attempt to describe what a plugin manager would need to do for Maven and for Nexus.
    
    h2. Concerns for the plugin manager
    
    h3. Resolving the dependencies of a plugin
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jan 22 11:03:29 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  9. cmd/metacache-manager.go

    package cmd
    
    import (
    	"context"
    	"fmt"
    	"runtime/debug"
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/logger"
    )
    
    // localMetacacheMgr is the *local* manager for this peer.
    // It should never be used directly since buckets are
    // distributed deterministically.
    // Therefore no cluster locks are required.
    var localMetacacheMgr = &metacacheManager{
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Oct 25 00:44:15 GMT 2022
    - 5.2K bytes
    - Click Count (0)
  10. internal/s3select/jstream/scanner.go

    // maximum possible integer value will be returned
    func (s *scanner) remaining() int64 {
    	if atomic.LoadInt64(&s.end) == maxInt {
    		return maxInt
    	}
    	return atomic.LoadInt64(&s.end) - s.pos
    }
    
    // read byte at current position (without advancing)
    func (s *scanner) cur() byte { return s.buf[s.ipos] }
    
    // read next byte
    func (s *scanner) next() byte {
    	if s.pos >= atomic.LoadInt64(&s.end) {
    		return nullByte
    	}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Sep 23 19:35:41 GMT 2024
    - 2.5K bytes
    - Click Count (0)
Back to Top