Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 351 for allocable (0.18 sec)

  1. src/runtime/mkpreempt.go

    		"MOVW %d(R13), R0\nMOVW R0, FPCR",
    		4)
    	for i := 0; i <= 15; i++ {
    		reg := fmt.Sprintf("F%d", i)
    		lfp.add("MOVD", reg, 8)
    	}
    
    	p("MOVW.W R14, -%d(R13)", lfp.stack) // allocate frame, save LR
    	l.save()
    	p("MOVB ·goarmsoftfp(SB), R0\nCMP $0, R0\nBNE nofp") // test goarmsoftfp, and skip FP registers if goarmsoftfp!=0.
    	lfp.save()
    	label("nofp:")
    	p("CALL ·asyncPreempt2(SB)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repair.go

    			default:
    				clusterIPRepairIPErrors.WithLabelValues("unknown").Inc()
    				c.recorder.Eventf(&svc, nil, v1.EventTypeWarning, "UnknownError", "ClusterIPAllocation", "Unable to allocate cluster IP [%v]:%s due to an unknown error", family, ip)
    				return fmt.Errorf("unable to allocate cluster IP [%v]:%s for service %s/%s due to an unknown error, exiting: %v", family, ip, svc.Name, svc.Namespace, err)
    			}
    		}
    	}
    
    	// leak check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. src/runtime/mpallocbits.go

    	m.pallocBits.allocRange(i, n)
    	m.scavenged.clearRange(i, n)
    }
    
    // allocAll sets every bit in the bitmap to 1 and updates
    // the scavenged bits appropriately.
    func (m *pallocData) allocAll() {
    	// Clear the scavenged bits when we alloc the range.
    	m.pallocBits.allocAll()
    	m.scavenged.clearAll()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/controller/repair.go

    			default:
    				nodePortRepairPortErrors.WithLabelValues("unknown").Inc()
    				c.recorder.Eventf(svc, nil, corev1.EventTypeWarning, "UnknownError", "PortAllocation", "Unable to allocate port %d due to an unknown error", port)
    				return fmt.Errorf("unable to allocate port %d for service %s/%s due to an unknown error, exiting: %v", port, svc.Name, svc.Namespace, err)
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults.go

    		obj.Phase = v1.NamespaceActive
    	}
    }
    func SetDefaults_NodeStatus(obj *v1.NodeStatus) {
    	if obj.Allocatable == nil && obj.Capacity != nil {
    		obj.Allocatable = make(v1.ResourceList, len(obj.Capacity))
    		for key, value := range obj.Capacity {
    			obj.Allocatable[key] = value.DeepCopy()
    		}
    		obj.Allocatable = obj.Capacity
    	}
    }
    func SetDefaults_ObjectFieldSelector(obj *v1.ObjectFieldSelector) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return CharBuffer.allocate(generateInt());
      }
    
      @Generates
      ByteBuffer generateByteBuffer() {
        return ByteBuffer.allocate(generateInt());
      }
    
      @Generates
      ShortBuffer generateShortBuffer() {
        return ShortBuffer.allocate(generateInt());
      }
    
      @Generates
      IntBuffer generateIntBuffer() {
        return IntBuffer.allocate(generateInt());
      }
    
      @Generates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return CharBuffer.allocate(generateInt());
      }
    
      @Generates
      ByteBuffer generateByteBuffer() {
        return ByteBuffer.allocate(generateInt());
      }
    
      @Generates
      ShortBuffer generateShortBuffer() {
        return ShortBuffer.allocate(generateInt());
      }
    
      @Generates
      IntBuffer generateIntBuffer() {
        return IntBuffer.allocate(generateInt());
      }
    
      @Generates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprog/gc.go

    	// allocChunk-sized holes. Then, it triggers a heap growth by trying to
    	// allocate as much memory as would fit in those holes.
    	//
    	// The heap growth should cause a large number of those holes to be
    	// returned to the OS.
    
    	const (
    		// The total amount of memory we're willing to allocate.
    		allocTotal = 32 << 20
    
    		// The page cache could hide 64 8-KiB pages from the scavenger today.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers_test.go

    		NewAllocatable v1.ResourceList
    	}{
    		{
    			Name:           "no allocatable resources changed",
    			Changed:        false,
    			OldAllocatable: v1.ResourceList{v1.ResourceMemory: newQuantity(1024)},
    			NewAllocatable: v1.ResourceList{v1.ResourceMemory: newQuantity(1024)},
    		},
    		{
    			Name:           "new node has more allocatable resources",
    			Changed:        true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    	for _, dev := range m.devs {
    		devs[dev.ID] = *dev
    	}
    
    	return m.getPreferredAllocFunc(r, devs)
    }
    
    // Allocate does a mock allocation
    func (m *Stub) Allocate(ctx context.Context, r *pluginapi.AllocateRequest) (*pluginapi.AllocateResponse, error) {
    	klog.InfoS("Allocate", "request", r)
    
    	devs := make(map[string]pluginapi.Device)
    
    	for _, dev := range m.devs {
    		devs[dev.ID] = *dev
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top