Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for iprm (0.1 sec)

  1. cmd/kube-controller-manager/app/core.go

    	if !controllerContext.ComponentConfig.KubeCloudShared.AllocateNodeCIDRs {
    		return nil, false, nil
    	}
    
    	if controllerContext.ComponentConfig.KubeCloudShared.CIDRAllocatorType == string(ipam.CloudAllocatorType) {
    		// Cannot run cloud ipam controller if cloud provider is nil (--cloud-provider not set or set to 'external')
    		if controllerContext.Cloud == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/sync/sync.go

    */
    
    package sync
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"time"
    
    	"k8s.io/klog/v2"
    	netutils "k8s.io/utils/net"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/controller/nodeipam/ipam/cidrset"
    )
    
    const (
    	// InvalidPodCIDR is the event recorded when a node is found with an
    	// invalid PodCIDR.
    	InvalidPodCIDR = "CloudCIDRAllocatorInvalidPodCIDR"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/anames.go

    	"CELFBR",
    	"CDLFBR",
    	"CELGBR",
    	"CDLGBR",
    	"CLFEBR",
    	"CLFDBR",
    	"CLGEBR",
    	"CLGDBR",
    	"CMP",
    	"CMPU",
    	"CMPW",
    	"CMPWU",
    	"TMHH",
    	"TMHL",
    	"TMLH",
    	"TMLL",
    	"IPM",
    	"SPM",
    	"CS",
    	"CSG",
    	"SYNC",
    	"BC",
    	"BCL",
    	"BRC",
    	"BEQ",
    	"BGE",
    	"BGT",
    	"BLE",
    	"BLT",
    	"BLEU",
    	"BLTU",
    	"BNE",
    	"BVC",
    	"BVS",
    	"SYSCALL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.motorola.flexsuite.kmr"/>
      <mime-type type="application/vnd.motorola.flexsuite.ttc"/>
      <mime-type type="application/vnd.motorola.flexsuite.wem"/>
      <mime-type type="application/vnd.motorola.iprm"/>
      <mime-type type="application/vnd.mozilla.xul+xml">
        <glob pattern="*.xul"/>
      </mime-type>
      <mime-type type="application/vnd.ms-artgalry">
        <glob pattern="*.cil"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. pilot/pkg/status/distribution/reporter.go

    	out := Report{
    		Reporter:            r.PodName,
    		DataPlaneCount:      len(r.status),
    		InProgressResources: map[string]int{},
    	}
    	// for every resource in flight
    	for _, ipr := range r.inProgressResources {
    		res := ipr.Resource
    		key := res.String()
    		// for every version (nonce) of the config currently in play
    		for nonce, dataplanes := range r.reverseStatus {
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/range_allocator_test.go

    limitations under the License.
    */
    
    package ipam
    
    import (
    	"net"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/kubernetes/pkg/controller/nodeipam/ipam/test"
    	"k8s.io/kubernetes/pkg/controller/testutil"
    	"k8s.io/kubernetes/test/utils/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator.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 ipam
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    	netutils "k8s.io/utils/net"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. cluster/gce/config-default.sh

    # and kubelet
    export CLOUD_PROVIDER_FLAG="${CLOUD_PROVIDER_FLAG:-external}"
    
    # Don't run the node-ipam-controller on the KCM if cloud-provider external
    if [[ "${CLOUD_PROVIDER_FLAG}" ==  "external" ]]; then
      RUN_CONTROLLERS="${RUN_CONTROLLERS:-*,-node-ipam-controller}"
    fi
    
    # When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
    # are presented to kubelet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

            # This container performs upgrade from host-local IPAM to calico-ipam.
            # It can be deleted if this is a fresh installation, or if you have already
            # upgraded to use calico-ipam.
            - name: upgrade-ipam
              image: gcr.io/istio-testing/calico/cni:v3.27.0
              imagePullPolicy: IfNotPresent
              command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
              envFrom:
              - configMapRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/s390x.s

    	TMHH	R1, $65535             // a712ffff
    	TMHL	R2, $1                 // a7230001
    	TMLH	R3, $0                 // a7300000
    	TMLL	R4, $32768             // a7418000
    
    	IPM	R3                     // b2220030
    	IPM	R12                    // b22200c0
    
    	SPM	R1                     // 0410
    	SPM	R10                    // 04a0
    
    	BRC	$7, 0(PC)              // a7740000
    	BNE	0(PC)                  // a7740000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top