Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for 4291 (0.14 sec)

  1. pkg/kubelet/container/container_gc.go

    		return false
    	}
    	// KEP 4191 explains that multiple filesystems for images and containers is not
    	// supported at the moment.
    	// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/4191-split-image-filesystem#comment-on-future-extensions
    	// for work needed to support multiple filesystems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/types.go

    	ImagesFsInfo() (cadvisorapiv2.FsInfo, error)
    
    	// Returns usage information about the root filesystem.
    	RootFsInfo() (cadvisorapiv2.FsInfo, error)
    
    	// Returns usage information about the writeable layer.
    	// KEP 4191 can separate the image filesystem
    	ContainerFsInfo() (cadvisorapiv2.FsInfo, error)
    
    	// Get filesystem information for the filesystem that contains the given file.
    	GetDirFsInfo(path string) (cadvisorapiv2.FsInfo, error)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/provider.go

    		Inodes:         rootFsInfo.Inodes,
    		InodesUsed:     nodeFsInodesUsed,
    	}, nil
    }
    
    // HasDedicatedImageFs returns true if a dedicated image filesystem exists for storing images.
    // KEP Issue Number 4191: Enhanced this to allow for the containers to be separate from images.
    func (p *Provider) HasDedicatedImageFs(ctx context.Context) (bool, error) {
    	device, err := p.containerStatsProvider.ImageFsDevice(ctx)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static protobufPlugin = "0.9.4"
    
            // https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/versions
            static protobufTools = "4.26.1"
    
            // https://plugins.gradle.org/plugin/org.gradle.test-retry
            static testRetryPlugin = "1.5.8"
    
            // https://plugins.gradle.org/plugin/io.freefair.aspectj
            static aspectj = "8.6"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"net.inet.etherip.allow", []_C_int{4, 2, 97, 1}},
    	{"net.inet.etherip.stats", []_C_int{4, 2, 97, 2}},
    	{"net.inet.gre.allow", []_C_int{4, 2, 47, 1}},
    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    	{"net.inet.icmp.errppslimit", []_C_int{4, 2, 1, 3}},
    	{"net.inet.icmp.maskrepl", []_C_int{4, 2, 1, 1}},
    	{"net.inet.icmp.rediraccept", []_C_int{4, 2, 1, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_AIO_SUSPEND                     = 0x508 // 1288
    	SYS_AIO_WRITE                       = 0x509 // 1289
    	SYS_PTHREAD_MUTEXATTR_GETPSHARED    = 0x50A // 1290
    	SYS_PTHREAD_MUTEXATTR_SETPSHARED    = 0x50B // 1291
    	SYS_PTHREAD_RWLOCK_DESTROY          = 0x50C // 1292
    	SYS_PTHREAD_RWLOCK_INIT             = 0x50D // 1293
    	SYS_PTHREAD_RWLOCK_RDLOCK           = 0x50E // 1294
    	SYS_PTHREAD_RWLOCK_TRYRDLOCK        = 0x50F // 1295
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  7. src/net/http/httptest/server.go

    		go s.closeConnChan(c, ch)
    	}
    	s.mu.Unlock()
    
    	// Wait for outstanding closes to finish.
    	//
    	// Out of paranoia for making a late change in Go 1.6, we
    	// bound how long this can wait, since golang.org/issue/14291
    	// isn't fully understood yet. At least this should only be used
    	// in tests.
    	timer := time.NewTimer(5 * time.Second)
    	defer timer.Stop()
    	for i := 0; i < nconn; i++ {
    		select {
    		case <-ch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/slices/slices_test.go

    	s = s[0:2]
    	_ = s[0:4] // this is a valid slice of s
    
    	for _, test := range []struct {
    		name string
    		s    []int
    		i, j int
    	}{
    		{"with negative first index", []int{42}, -2, 1},
    		{"with negative second index", []int{42}, 1, -1},
    		{"with out-of-bounds first index", []int{42}, 2, 3},
    		{"with out-of-bounds second index", []int{42}, 0, 2},
    		{"with out-of-bounds both indexes", []int{42}, 2, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000350  a9 10 f0 4a 51 2c e3 1d  e3 59 28 f2 3b ea 66 c1  |...JQ,...Y(.;.f.|
    00000360  ed 6a 8d 39 72 ea 5a 24  7a ee 9f cd 85 9d 54 60  |.j.9r.Z$z.....T`|
    00000370  d4 95 fd 8d 63 a4 78 6c  2f 7d 6a a5 53 e4 42 97  |....c.xl/}j.S.B.|
    00000380  e8 19 36 bf 14 9c a8 48  9f 57 ad 29 7a 30 e5 a9  |..6....H.W.)z0..|
    00000390  32 e7 0f 24 9c ca 9d 6d  b7 47 46 1c cb 90 7d 18  |2..$...m.GF...}.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-RSAPSS

    00000190  20 db 80 ce e0 c8 a7 1c  b2 62 fc 85 7d 87 ca 00  | ........b..}...|
    000001a0  64 4c 25 4d 3c b2 bf 9d  46 c5 04 b5 dd 7a 29 87  |dL%M<...F....z).|
    000001b0  29 30 2e bc 42 31 9b f2  eb 7b 58 63 91 28 6f 43  |)0..B1...{Xc.(oC|
    000001c0  6b c1 4e 00 b2 4b 9d 0c  ef 18 5b 61 ec 77 84 e1  |k.N..K....[a.w..|
    000001d0  88 49 f9 e2 71 2e 35 23  b8 73 6d c2 52 d1 2f ad  |.I..q.5#.sm.R./.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top