Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Bfree (0.06 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static_test.go

    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    							Allocatable:    1536 * mb,
    							Free:           1536 * mb,
    							Reserved:       0,
    							SystemReserved: 512 * mb,
    							TotalMemSize:   3 * gb,
    						},
    						hugepages1Gi: {
    							Allocatable:    gb,
    							Free:           gb,
    							Reserved:       0,
    							SystemReserved: 0,
    							TotalMemSize:   gb,
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		sched.gFree.stack.pushAll(stackQ)
    		sched.gFree.n += inc
    		unlock(&sched.gFree.lock)
    	}
    }
    
    // Get from gfree list.
    // If local list is empty, grab a batch from global list.
    func gfget(pp *p) *g {
    retry:
    	if pp.gFree.empty() && (!sched.gFree.stack.empty() || !sched.gFree.noStack.empty()) {
    		lock(&sched.gFree.lock)
    		// Move a batch of free Gs to the P.
    		for pp.gFree.n < 32 {
    			// Prefer Gs with stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	}
    
    	if g, w := db.numOpen, 3; g != w {
    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    
    	db.SetMaxOpenConns(2)
    	if g, w := db.numOpen, 3; g != w {
    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    
    	conn0.releaseConn(nil)
    	conn1.releaseConn(nil)
    	if g, w := db.numOpen, 2; g != w {
    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    
    	conn2.releaseConn(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512_test.go

    		"Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

              - artifactType 'jar'
              - buildType 'release'
              - flavor 'free'
              - usage 'api'
          - Candidate transform(s):
              - Transform 'BrokenTransform' producing attributes:
                  - artifactType 'transformed'
                  - buildType 'release'
                  - flavor 'free'
                  - usage 'api'
      - From 'configuration ':lib:compile' variant variant2':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    // underlying connections. It's safe for concurrent use by multiple
    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    // also maintains a free pool of idle connections. If the database has
    // a concept of per-connection state, such state can be reliably observed
    // within a transaction ([Tx]) or connection ([Conn]). Once [DB.Begin] is called, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /* jcifs smb client library in Java
     * Copyright (C) 2000  "Michael B. Allen" <jcifs at samba dot org>
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.Total, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "Total")
    		return
    	}
    	z.Free, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "Free")
    		return
    	}
    	z.Used, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "Used")
    		return
    	}
    	z.UsedInodes, err = dc.ReadUint64()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    		t.Errorf("Expected %v, actual: %v", expectedBytes, nodeFsQuantity.capacity.Value())
    	}
    	nodeFsInodesQuantity, found := actualObservations[evictionapi.SignalNodeFsInodesFree]
    	if !found {
    		t.Error("Expected inodes free nodefs observation")
    	}
    	if expected := int64(nodeFsInodesFree); nodeFsInodesQuantity.available.Value() != expected {
    		t.Errorf("Expected %v, actual: %v", expected, nodeFsInodesQuantity.available.Value())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top