Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for reserved1 (0.16 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709162918-a91498bed0a7.txt

    // Copyright 2018 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 buggy
    
    import "testing"
    
    func Test(t *testing.T) {
    	t.Fatal("buggy!")
    }
    -- go.mod --
    module rsc.io/quote
    
    require rsc.io/sampler v1.3.0
    -- quote.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/mips64/l.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/state/state.go

    )
    
    // MemoryTable contains memory information
    type MemoryTable struct {
    	TotalMemSize   uint64 `json:"total"`
    	SystemReserved uint64 `json:"systemReserved"`
    	Allocatable    uint64 `json:"allocatable"`
    	Reserved       uint64 `json:"reserved"`
    	Free           uint64 `json:"free"`
    }
    
    // NUMANodeState contains NUMA node related information
    type NUMANodeState struct {
    	// NumberOfAssignments contains a number memory assignments from this node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  4. src/internal/pkgbits/reloc.go

    // Copyright 2021 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 pkgbits
    
    // A RelocKind indicates a particular section within a unified IR export.
    type RelocKind int32
    
    // An Index represents a bitstream element index within a particular
    // section.
    type Index int32
    
    // A relocEnt (relocation entry) is an entry in an element's local
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 22:22:48 UTC 2022
    - 835 bytes
    - Viewed (0)
  5. src/go/doc/synopsis_test.go

    	{"Package 안녕.世界", 17, "Package 안녕."},
    	{"Package foo does bar.", 21, "Package foo does bar."},
    	{"Copyright 2012 Google, Inc. Package foo does bar.", 27, ""},
    	{"All Rights reserved. Package foo does bar.", 20, ""},
    	{"All rights reserved. Package foo does bar.", 20, ""},
    	{"Authors: ******@****.***. Package foo does bar.", 21, ""},
    	{"typically invoked as ``go tool asm'',", 37, "typically invoked as “go tool asm”,"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/goarch/goarch.go

    const Int64Align = 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 = _MinFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/l.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/s390x/l.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  9. src/go/doc/comment/mkstd.sh

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This could be a good use for embed but go/doc/comment
    # is built into the bootstrap go command, so it can't use embed.
    # Also not using embed lets us emit a string array directly
    # and avoid init-time work.
    
    (
    echo "// Copyright 2022 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:42 UTC 2022
    - 768 bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    	for _, node := range nodes {
    		if !slices.Contains(schedulingCtx.Spec.PotentialNodes, node.Node().Name) {
    			return false
    		}
    	}
    	return true
    }
    
    // Reserve reserves claims for the pod.
    func (pl *dynamicResources) Reserve(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeName string) (status *framework.Status) {
    	if !pl.enabled {
    		return nil
    	}
    	state, err := getStateData(cs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top