Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for ingr (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    	w.updateIndexLocked(identifier, index, 1)
    	return w.forgetWatch(identifier, index)
    }
    
    func (w *watchTracker) updateIndexLocked(identifier *watchIdentifier, index *indexValue, incr int) {
    	if index == nil {
    		w.watchCount[*identifier] += incr
    	} else {
    		// For resources with defined index, for a given watch event we are
    		// only processing the watchers that:
    		// (a) do not specify field selector for an index field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/en-ie/stopwords.txt

    de
    deich
    deichniúr
    den
    dhá
    do
    don
    dtí
    dá
    dár
    dó
    faoi
    faoin
    faoina
    faoinár
    fara
    fiche
    gach
    gan
    go
    gur
    haon
    hocht
    i
    iad
    idir
    in
    ina
    ins
    inár
    is
    le
    leis
    lena
    lenár
    m'
    mar
    mo
    mé
    na
    nach
    naoi
    naonúr
    ná
    ní
    níor
    nó
    nócha
    ocht
    ochtar
    os
    roimh
    sa
    seacht
    seachtar
    seachtó
    seasca
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 685 bytes
    - Viewed (0)
  3. pkg/proxy/serviceport.go

    	var invalidIPs []net.IP
    	for _, ing := range service.Status.LoadBalancer.Ingress {
    		if ing.IP == "" {
    			continue
    		}
    
    		// proxy mode load balancers do not need to track the IPs in the service cache
    		// and they can also implement IP family translation, so no need to check if
    		// the status ingress.IP and the ClusterIP belong to the same family.
    		if !proxyutil.IsVIPMode(ing) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// paranoia to make sure the value is legal
    	dayofweek %= 7
    	if dayofweek < 0 {
    		dayofweek += 7
    	}
    	today := now.Weekday()
    	incr := dayofweek - today
    	if incr <= 0 {
    		incr += 7
    	}
    	return int(incr), nil
    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. api/discovery/apis__networking.k8s.io__v1.json

            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "Ingress",
          "name": "ingresses",
          "namespaced": true,
          "shortNames": [
            "ing"
          ],
          "singularName": "ingress",
          "storageVersionHash": "39NQlfNR+bo=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/no/stopwords.txt

    siden
    dykk
    dykkar
    dei
    deira
    deires
    deim
    di
    då
    eg
    ein
    eit
    eitt
    elles
    honom
    hjå
    ho
    hoe
    henne
    hennar
    hennes
    hoss
    hossen
    ikkje
    ingi
    inkje
    korleis
    korso
    kva
    kvar
    kvarhelst
    kven
    kvi
    kvifor
    me
    medan
    mi
    mine
    mykje
    no
    nokon
    noka
    nokor
    noko
    nokre
    si
    sia
    sidan
    so
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 994 bytes
    - Viewed (0)
  7. src/crypto/aes/asm_s390x.s

    	MOVD	R2, R6
    	MOVD	R2, R8
    	MOVD	R3, R5
    	MOVD	R3, R7
    	MOVD	R3, R9
    	ADDW	$1, R5
    	ADDW	$2, R7
    	ADDW	$3, R9
    incr:
    	CMP	R0, $64
    	BLT	tail
    	STMG	R2, R9, (R1)
    	ADDW	$4, R3
    	ADDW	$4, R5
    	ADDW	$4, R7
    	ADDW	$4, R9
    	MOVD	$64(R1), R1
    	SUB	$64, R0
    	BR	incr
    tail:
    	CMP	R0, $0
    	BEQ	crypt
    	STMG	R2, R3, (R1)
    	ADDW	$1, R3
    	MOVD	$16(R1), R1
    	SUB	$16, R0
    	BR	tail
    crypt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	if svc.Spec.ClusterIP != "" && svc.Spec.ClusterIP != v1.ClusterIPNone {
    		res = append(res, svc.Spec.ClusterIP)
    	}
    	for _, ing := range svc.Status.LoadBalancer.Ingress {
    		// IPs are strictly optional for loadbalancers - they may just have a hostname.
    		if ing.IP != "" {
    			res = append(res, ing.IP)
    		}
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. pkg/proxy/util/utils.go

    				return service.Spec.ClusterIPs[idx]
    			}
    		}
    	}
    
    	return ""
    }
    
    func IsVIPMode(ing v1.LoadBalancerIngress) bool {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) {
    		return true // backwards compat
    	}
    	if ing.IPMode == nil {
    		return true
    	}
    	return *ing.IPMode == v1.LoadBalancerIPModeVIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. cluster/gce/windows/smoke-test.sh

      local service_port
      service_port=$($kubectl get service --namespace kube-system $service \
        -o jsonpath='{.spec.ports[?(@.protocol=="TCP")].port}')
      echo "curl-ing $service address from Linux pod: $service_ip:$service_port"
    
      # curl-ing the metrics-server service downloads 14 bytes of unprintable binary
      # data and sets a return code of success (0).
      if ! $kubectl exec "$linux_command_pod" -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top