Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 336 for corexds (5.46 sec)

  1. pilot/pkg/networking/grpcgen/cds.go

    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	corexds "istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/topology/topology.go

    			}
    		}
    	}
    	return cpuset.New(socketIDs...)
    }
    
    // Cores returns all of the core IDs associated with the CPUs in this
    // CPUDetails.
    func (d CPUDetails) Cores() cpuset.CPUSet {
    	var coreIDs []int
    	for _, info := range d {
    		coreIDs = append(coreIDs, info.CoreID)
    	}
    	return cpuset.New(coreIDs...)
    }
    
    // CoresInNUMANodes returns all of the core IDs associated with the given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. cluster/addons/dns/coredns/coredns.yaml.base

            kubernetes.io/os: linux
          containers:
          - name: coredns
            image: registry.k8s.io/coredns/coredns:v1.11.1
            imagePullPolicy: IfNotPresent
            resources:
              limits:
                memory: __DNS__MEMORY__LIMIT__
              requests:
                cpu: 100m
                memory: 70Mi
            args: [ "-conf", "/etc/coredns/Corefile" ]
            volumeMounts:
            - name: config-volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. cluster/addons/dns/coredns/coredns.yaml.sed

            kubernetes.io/os: linux
          containers:
          - name: coredns
            image: registry.k8s.io/coredns/coredns:v1.11.1
            imagePullPolicy: IfNotPresent
            resources:
              limits:
                memory: $DNS_MEMORY_LIMIT
              requests:
                cpu: 100m
                memory: 70Mi
            args: [ "-conf", "/etc/coredns/Corefile" ]
            volumeMounts:
            - name: config-volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. cluster/addons/dns/coredns/coredns.yaml.in

            kubernetes.io/os: linux
          containers:
          - name: coredns
            image: registry.k8s.io/coredns/coredns:v1.11.1
            imagePullPolicy: IfNotPresent
            resources:
              limits:
                memory: 'dns_memory_limit'
              requests:
                cpu: 100m
                memory: 70Mi
            args: [ "-conf", "/etc/coredns/Corefile" ]
            volumeMounts:
            - name: config-volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    					45: {CoreID: 5, SocketID: 0, NUMANodeID: 0},
    					46: {CoreID: 6, SocketID: 0, NUMANodeID: 0},
    					47: {CoreID: 7, SocketID: 0, NUMANodeID: 0},
    					48: {CoreID: 8, SocketID: 0, NUMANodeID: 0},
    					49: {CoreID: 9, SocketID: 0, NUMANodeID: 0},
    					50: {CoreID: 10, SocketID: 0, NUMANodeID: 1},
    					51: {CoreID: 11, SocketID: 0, NUMANodeID: 1},
    					52: {CoreID: 12, SocketID: 0, NUMANodeID: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  7. pkg/credentialprovider/keyring.go

    		}
    		var key string
    		if (len(effectivePath) > 0) && (effectivePath != "/") {
    			key = parsed.Host + effectivePath
    		} else {
    			key = parsed.Host
    		}
    		dk.creds[key] = append(dk.creds[key], creds)
    		dk.index = append(dk.index, key)
    	}
    
    	eliminateDupes := sets.NewString(dk.index...)
    	dk.index = eliminateDupes.List()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    //
    // If `numCPUs` is bigger than the total number of CPUs in a core, and there are
    // free (i.e. all CPUs in them are free) cores, the function takes as many entire free cores as possible.
    // The cores are taken from one socket at a time, and the sockets are considered by
    // ascending order of free CPUs in them. For a given socket, the cores are taken one NUMA node at a time,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    			NumSockets: 2,
    			NumCores:   4,
    			CPUDetails: map[int]topology.CPUInfo{
    				0: {CoreID: 0, SocketID: 0},
    				1: {CoreID: 1, SocketID: 0},
    				2: {CoreID: 2, SocketID: 0},
    				3: {CoreID: 3, SocketID: 0},
    				4: {CoreID: 0, SocketID: 1},
    				5: {CoreID: 1, SocketID: 1},
    				6: {CoreID: 2, SocketID: 1},
    				7: {CoreID: 3, SocketID: 1},
    			},
    		},
    		0,
    		cpuset.New(),
    		topologymanager.NewFakeManager(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  10. go.mod

    	github.com/bcicen/jstream v1.0.1
    	github.com/beevik/ntp v1.4.3
    	github.com/buger/jsonparser v1.1.1
    	github.com/cespare/xxhash/v2 v2.3.0
    	github.com/cheggaaa/pb v1.0.29
    	github.com/coredns/coredns v1.11.3
    	github.com/coreos/go-oidc/v3 v3.10.0
    	github.com/coreos/go-systemd/v22 v22.5.0
    	github.com/cosnicolaou/pbzip2 v1.0.3
    	github.com/dchest/siphash v1.2.3
    	github.com/dustin/go-humanize v1.0.1
    	github.com/eclipse/paho.mqtt.golang v1.4.3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top