Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for unserved (8.28 sec)

  1. src/runtime/internal/sys/consts.go

    const Int64Align = goarch.PtrSize
    
    // MinFrameSize is the size of the system-reserved words at the bottom
    // of a frame (just above the architectural stack pointer).
    // It is zero on x86 and PtrSize on most non-x86 (LR-based) systems.
    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = goarch.MinFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/runtime/cpuflags_amd64.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/cpu"
    )
    
    var useAVXmemmove bool
    
    func init() {
    	// Let's remove stepping and reserved fields
    	processor := processorVersionInfo & 0x0FFF3FF0
    
    	isIntelBridgeFamily := isIntel &&
    		processor == 0x206A0 ||
    		processor == 0x206D0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 24 07:29:52 UTC 2018
    - 533 bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static.go

    	if reserved.Size() != numReservedCPUs {
    		err := fmt.Errorf("[cpumanager] unable to reserve the required amount of CPUs (size of %s did not equal %d)", reserved, numReservedCPUs)
    		return nil, err
    	}
    
    	var reservedPhysicalCPUs cpuset.CPUSet
    	for _, cpu := range reserved.UnsortedList() {
    		core, err := topology.CPUCoreID(cpu)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java

        int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) {
            int start = bufferIndex;
    
            buffer[bufferIndex++] = (byte)0x00;        // Reserved
            buffer[bufferIndex++] = (byte)0x00;        // Reserved
            buffer[bufferIndex++] = (byte)0x00;        // Reserved
    
            totalParameterCount = readInt4( buffer, bufferIndex );
            if( bufDataStart == 0 ) {
                bufDataStart = totalParameterCount;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    								Free:           1024,
    								Reserved:       512,
    								SystemReserved: 512,
    								TotalMemSize:   2048,
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"Restore checkpoint with invalid checksum",
    			`{
    				"policyName":"static",
    				"machineState":{"0":{"numberOfAssignments":0,"memoryMap":{"memory":{"total":2048,"systemReserved":512,"allocatable":1536,"reserved":512,"free":1024}},"cells":[]}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

        List<Element<T>> getInserted() {
            return inserted;
        }
    
        @Override
        public boolean isEmpty() {
            for (Element<T> element : inserted) {
                if (element.size() != 0) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
        public boolean constantTimeIsEmpty() {
            return inserted.isEmpty();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

     * so that we instantly mark configurations as observed as their metadata is constructed. That would be an improvement
     * over this visitor, since here we only mark a configuration observed if its metadata is present in the final graph.
     * There are likely scenarios that this visitor does not cover, where a configuration's metadata is observed but
     * its component is not present in the final graph.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/cache/internal/HeapProportionalCacheSizerTest.groovy

            768       | 1600
            1024      | 2300
            1536      | 3600
            2048      | 4900
        }
    
        def "cache cap sizer honors reserved space when specified"() {
            given:
            System.setProperty(HeapProportionalCacheSizer.CACHE_RESERVED_SYSTEM_PROPERTY, reserved.toString())
            def heapProportionalCacheSizer = new HeapProportionalCacheSizer(maxHeapMB)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 14 07:38:37 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  9. src/compress/bzip2/huffman.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bzip2
    
    import (
    	"cmp"
    	"slices"
    )
    
    // A huffmanTree is a binary tree which is navigated, bit-by-bit to reach a
    // symbol.
    type huffmanTree struct {
    	// nodes contains all the non-leaf nodes in the tree. nodes[0] is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/runtime/traceback_system_test.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    // This test of GOTRACEBACK=system has its own file,
    // to minimize line-number perturbation.
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"runtime/debug"
    	"strconv"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top