Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for IntPtr (0.13 sec)

  1. pkg/proxy/nftables/proxier_test.go

    					Protocol:   v1.ProtocolTCP,
    					TargetPort: intstr.FromInt32(8443),
    				},
    				{
    					Name:     "dns-udp",
    					Port:     53,
    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. pkg/registry/core/service/strategy_test.go

    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	BYTE $0xE3; BYTE $0x92; BYTE $0x00; BYTE $0x00; BYTE $0x00; BYTE $0x24 // stg   9,0(2)
    	MOVD R3, ret+8(FP)                                                     // result in R3
    	RET
    
    //
    // function to test if a untptr can be loaded from a pointer
    // return 1: the 8-byte content
    //        2: 0 for success, 1 for failure
    //
    // func safeload(ptr uintptr) ( value uintptr, error uintptr)
    TEXT ·safeload(SB), NOSPLIT, $0-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package intstr
    
    import (
    	"encoding/json"
    	"fmt"
    	"math"
    	"reflect"
    	"testing"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    	"sigs.k8s.io/yaml"
    
    	"github.com/google/go-cmp/cmp"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/encoding/json/decode_test.go

    	Uint8   uint8
    	Uint16  uint16
    	Uint32  uint32
    	Uint64  uint64
    	Uintptr uintptr
    	Float32 float32
    	Float64 float64
    
    	Foo  string `json:"bar"`
    	Foo2 string `json:"bar2,dummyopt"`
    
    	IntStr     int64   `json:",string"`
    	UintptrStr uintptr `json:",string"`
    
    	PBool    *bool
    	PInt     *int
    	PInt8    *int8
    	PInt16   *int16
    	PInt32   *int32
    	PInt64   *int64
    	PUint    *uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. pkg/proxy/servicechangetracker_test.go

    	"net"
    	"reflect"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/features"
    	netutils "k8s.io/utils/net"
    )
    
    const testHostname = "test-hostname"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.7
    
    // NetworkPolicy describes what network traffic is allowed for a set of Pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    					TargetPort: intstr.FromInt32(8443),
    				},
    				{
    					Name:     "dns-udp",
    					Port:     53,
    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"github.com/Microsoft/hcsshim"
    	"github.com/Microsoft/hcsshim/hcn"
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	apiutil "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top