Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,044 for usedBy (0.31 sec)

  1. cmd/metrics-v3-system-memory.go

    const (
    	memTotal     = "total"
    	memUsed      = "used"
    	memFree      = "free"
    	memBuffers   = "buffers"
    	memCache     = "cache"
    	memUsedPerc  = "used_perc"
    	memShared    = "shared"
    	memAvailable = "available"
    )
    
    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    	memUsedMD      = NewGaugeMD(memUsed, "Used memory on the node")
    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:10:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8.go

    		return new(errUnmarshalChaCha8)
    	}
    	used := byteorder.BeUint64(data[1*8:])
    	if used > (ctrMax/ctrInc)*chunk-reseed {
    		return new(errUnmarshalChaCha8)
    	}
    	for i := range s.seed {
    		s.seed[i] = byteorder.LeUint64(data[(2+i)*8:])
    	}
    	s.c = ctrInc * (uint32(used) / chunk)
    	block(&s.seed, &s.buf, s.c)
    	s.i = uint32(used) % chunk
    	s.n = chunk
    	if s.c == ctrMax-ctrInc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    	Week     string  // first day this report covers (YYYY-MM-DD)
    	LastWeek string  // Week field from latest previous report uploaded
    	X        float64 // A random probability used to determine which counters are uploaded
    	Programs []*ProgramReport
    	Config   string // version of UploadConfig used
    }
    
    type ProgramReport struct {
    	Program   string
    	Version   string
    	GoVersion string
    	GOOS      string
    	GOARCH    string
    	Counters  map[string]int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/allocator_test.go

    	}
    	if f := r.Free(); f != 1 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 200 {
    		t.Errorf("unexpected used %d", f)
    	}
    	if err := r.Allocate(released); err != nil {
    		t.Fatal(err)
    	}
    	if f := r.Free(); f != 0 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 201 {
    		t.Errorf("unexpected used %d", f)
    	}
    }
    
    func TestAllocateReserved(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. releasenotes/notes/48818.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * selecting the matching configuration. If {@code null}, a default configuration should be used.
         */
        @Nullable
        String getTargetConfiguration();
    
        /**
         * Sets the requested target configuration of this dependency. This is the name of the configuration in the target module that should be used when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore.go

    			// for open-coded defers from being removed (since they
    			// may not be used by the inline code, but will be used by
    			// panic processing).
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if !used.Has(n) {
    				used.Add(n)
    				changed = true
    			}
    			return
    		case OpStore, OpMove, OpZero:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. build-logic-commons/basics/build.gradle.kts

        api(platform(project(":build-platform")))
    
        implementation("com.google.guava:guava") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm-commons") {
            because("Used by class analysis")
        }
    
        implementation(kotlin("compiler-embeddable") as String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/common/deployment/namespace.go

    	Namespace namespace.Instance
    
    	// Standard echo app to be used by tests
    	A echo.Instances
    	// Standard echo app to be used by tests
    	B echo.Instances
    	// Standard echo app to be used by tests
    	C echo.Instances
    	// Dual-stack echo app to be used by tests if running in dual-stack mode
    	D echo.Instances
    	// IPv6 only echo app to be used by tests if running in dual-stack mode
    	E echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //   - Add `ClusterConfiguration.EncryptionAlgorithm` that can be used to set the asymmetric encryption algorithm
    //     used for this cluster's keys and certificates. Can be one of "RSA-2048" (default), "RSA-3072", "RSA-4096" or "ECDSA-P256".
    //   - Add `ClusterConfiguration.DNS.Disabled` and `ClusterConfiguration.Proxy.Disabled` that can be used to disable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top