Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,369 for reserved1 (0.28 sec)

  1. pkg/controller/resourceclaim/controller_test.go

    		},
    		{
    			name:            "stay-reserved-seen",
    			pods:            []*v1.Pod{testPodWithResource},
    			key:             claimKey(testClaimReserved),
    			claims:          []*resourcev1alpha2.ResourceClaim{testClaimReserved},
    			expectedClaims:  []resourcev1alpha2.ResourceClaim{*testClaimReserved},
    			expectedMetrics: expectedMetrics{0, 0},
    		},
    		{
    			name:            "stay-reserved-not-seen",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

                }
                apply plugin: 'base'
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_386.s

    // Copyright 2009 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.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "time_windows.h"
    
    // Offsets into Thread Environment Block (pointer in FS)
    #define TEB_TlsSlots 0xE10
    #define TEB_ArbitraryPtr 0x14
    
    TEXT runtime·asmstdcall_trampoline<ABIInternal>(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    // Copyright (c) 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 edwards25519
    
    import (
    	"errors"
    	"internal/byteorder"
    )
    
    // A Scalar is an integer modulo
    //
    //	l = 2^252 + 27742317777372353535851937790883648493
    //
    // which is the prime order of the edwards25519 group.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/SocksProxy.kt

        if (version != VERSION_5) throw ProtocolException("unexpected version: $version")
    
        val command = fromSource.readByte() and 0xff
    
        val reserved = fromSource.readByte() and 0xff
        if (reserved != 0) throw ProtocolException("unexpected reserved: $reserved")
    
        val addressType = fromSource.readByte() and 0xff
        val toAddress =
          when (addressType) {
            ADDRESS_TYPE_IPV4 -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top