Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 522 for Ticket (0.1 sec)

  1. cmd/bucket-replication-metrics.go

    			atomic.AddUint64(&p.srProxyStats.GetFailedTotal, 1)
    		}
    	default:
    		return
    	}
    	p.bucketStats[bucket] = v
    }
    
    func (p *proxyStatsCache) getBucketStats(bucket string) ProxyMetric {
    	p.RLock()
    	defer p.RUnlock()
    	v, ok := p.bucketStats[bucket]
    
    	if !ok {
    		return ProxyMetric{}
    	}
    	return ProxyMetric{
    		PutTagTotal: atomic.LoadUint64(&v.PutTagTotal),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. cmd/bucket-lifecycle-handlers_test.go

    }
    
    // Test S3 Bucket lifecycle APIs
    func TestBucketLifecycle(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testBucketLifecycleHandlers, endpoints: []string{"GetBucketLifecycle", "PutBucketLifecycle", "DeleteBucketLifecycle"}})
    }
    
    // Simple tests of bucket lifecycle: PUT, GET, DELETE.
    // Tests are related and the order is important.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication_test.go

    package cmd
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"testing"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/bucket/replication"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    var configs = []replication.Config{
    	{ // Config0 - Replication config has no filters, existing object replication enabled
    		Rules: []replication.Rule{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. cmd/data-usage_test.go

    	files := []usageTestFile{
    		{name: "bucket/rootfile", size: 10000},
    		{name: "bucket/rootfile2", size: 10000},
    		{name: "bucket/dir1/d1file", size: 2000},
    		{name: "bucket/dir2/d2file", size: 300},
    		{name: "bucket/dir1/dira/dafile", size: 100000},
    		{name: "bucket/dir1/dira/dbfile", size: 200000},
    		{name: "bucket/dir1/dira/dirasub/dcfile", size: 1000000},
    		{name: "bucket/dir1/dira/dirasub/sublevel3/dccccfile", size: 10},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    	//
    	// DESC: If we have a packet mark, set a connmark.
    	iptablesBuilder.AppendRule(iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-m", "mark",
    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. cmd/bucket-stats_gen_test.go

    Poorna <******@****.***> 1693382459 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 30 08:00:59 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. src/net/net_fake.go

    	}
    	return nil
    }
    
    const maxPacketSize = 65535
    
    type packet struct {
    	buf       []byte
    	bufOffset int
    	next      *packet
    	from      sockaddr
    }
    
    func (p *packet) clear() {
    	p.buf = p.buf[:0]
    	p.bufOffset = 0
    	p.next = nil
    	p.from = nil
    }
    
    var packetPool = sync.Pool{
    	New: func() any { return new(packet) },
    }
    
    type packetQueueState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. cmd/bucket-replication-metrics_gen.go

    Krishnan Parthasarathi <******@****.***> 1711041695 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

                }
    
                private void doRun() {
                    while (true) {
                        DatagramPacket packet;
                        FileLockPacketPayload payload;
                        try {
                            packet = communicator.receive();
                            payload = communicator.decode(packet);
                        } catch (GracefullyStoppedException e) {
                            return;
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. cmd/bucket-replication-metrics_gen_test.go

    Poorna <******@****.***> 1707199245 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top