Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,650 for reserved1 (0.13 sec)

  1. src/cmd/go/testdata/script/generate.txt

    // Copyright 2014 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.
    
    // Simple test for go generate.
    
    // We include a build tag that go generate should ignore.
    
    // +build ignore
    
    //go:generate echo Success
    
    package p
    -- generate/alias.go --
    // Copyright 2014 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/validation/validation_others_test.go

    limitations under the License.
    */
    
    package validation_test
    
    var (
    	cgroupsPerQOS          = true
    	enforceNodeAllocatable = []string{"pods", "system-reserved", "kube-reserved"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 20:46:56 UTC 2022
    - 754 bytes
    - Viewed (0)
  3. 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)
  4. src/internal/syscall/windows/reparse_windows.go

    // Copyright 2016 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 windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    // Reparse tag values are taken from
    // https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c8e77b37-3909-4fe6-a4ea-2b9d423b1ee4
    const (
    	FSCTL_SET_REPARSE_POINT    = 0x000900A4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      internal const val B0_FLAG_FIN = 128
    
      /** Byte 0 reserved flag 1. Must be 0 unless negotiated otherwise. */
      internal const val B0_FLAG_RSV1 = 64
    
      /** Byte 0 reserved flag 2. Must be 0 unless negotiated otherwise. */
      internal const val B0_FLAG_RSV2 = 32
    
      /** Byte 0 reserved flag 3. Must be 0 unless negotiated otherwise. */
      internal const val B0_FLAG_RSV3 = 16
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/internal/runtime/syscall/asm_linux_mipsx.s

    // Copyright 2022 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.
    
    //go:build linux && (mips || mipsle)
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    //
    // The 5th and 6th arg go at sp+16, sp+20.
    // Note that frame size of 20 means that 24 bytes gets reserved on stack.
    TEXT ·Syscall6(SB),NOSPLIT,$20-40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 876 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types_test.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"reflect"
    	"strings"
    	"testing"
    )
    
    // Test_ServiceSpecRemovedFieldProtobufNumberReservation tests that the reserved protobuf field numbers
    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kubelet/types/constants.go

    )
    
    // User visible keys for managing node allocatable enforcement on the node.
    const (
    	NodeAllocatableEnforcementKey = "pods"
    	SystemReservedEnforcementKey  = "system-reserved"
    	KubeReservedEnforcementKey    = "kube-reserved"
    	NodeAllocatableNoneKey        = "none"
    )
    
    // SwapBehavior types
    const (
    	LimitedSwap = "LimitedSwap"
    	NoSwap      = "NoSwap"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/internal/filepathlite/path_windows.go

    	}
    	if !isReservedBaseName(base) {
    		return false
    	}
    	if len(base) == len(name) {
    		return true
    	}
    	// The path element is a reserved name with an extension.
    	// Some Windows versions consider this a reserved name,
    	// while others do not. Use FullPath to see if the name is
    	// reserved.
    	if p, _ := syscall.FullPath(name); len(p) >= 4 && p[:4] == `\\.\` {
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. licenses/github.com/fsnotify/fsnotify/LICENSE

    Copyright © 2012 The Go Authors. All rights reserved.
    Copyright © fsnotify Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without modification,
    are permitted provided that the following conditions are met:
    
    * Redistributions of source code must retain the above copyright notice, this
      list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice, this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 19:12:46 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top