Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for ingr (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pilot/pkg/config/kube/ingress/conversion_test.go

    					},
    				},
    			}
    
    			mesh := mesh.DefaultMeshConfig()
    			mesh.IngressControllerMode = c.ingressMode
    
    			if c.annotation != "" {
    				ing.Annotations["kubernetes.io/ingress.class"] = c.annotation
    			}
    
    			if c.shouldProcess != shouldProcessIngressWithClass(mesh, &ing, c.ingressClass) {
    				t.Errorf("got %v, want %v",
    					!c.shouldProcess, c.shouldProcess)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults.go

    	}
    
    	if obj.Spec.Type == v1.ServiceTypeLoadBalancer {
    		if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) {
    			ipMode := v1.LoadBalancerIPModeVIP
    
    			for i, ing := range obj.Status.LoadBalancer.Ingress {
    				if ing.IP != "" && ing.IPMode == nil {
    					obj.Status.LoadBalancer.Ingress[i].IPMode = &ipMode
    				}
    			}
    		}
    	}
    
    }
    func SetDefaults_Pod(obj *v1.Pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    				if g := r.Scope.Goroutine(); g != NoGoroutine {
    					inGC[g] = true
    				}
    			}
    		case EventRangeEnd:
    			r := ev.Range()
    			if handleSTW(r) {
    				stw--
    			} else if handleSweep(r) {
    				ps[ev.Proc()].gc--
    			} else if handleMarkAssist(r) {
    				ps[ev.Proc()].gc--
    				if g := r.Scope.Goroutine(); g != NoGoroutine {
    					delete(inGC, g)
    				}
    			}
    		case EventStateTransition:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. internal/s3select/csv/reader_contrib_test.go

    				unmarshaled:                true,
    			}
    			if !c.header {
    				args.FileHeaderInfo = none
    			}
    			inr := io.Reader(bytes.NewReader(input))
    			if c.sendErr != nil {
    				inr = io.MultiReader(inr, errReader{c.sendErr})
    			}
    			r, _ := NewReader(io.NopCloser(inr), &args)
    			fields := 0
    			for {
    				record, err = r.Read(record)
    				if err != nil {
    					break
    				}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_MSYNC                    = 65  // { int msync(void *addr, size_t len, \
    	SYS_VFORK                    = 66  // { int vfork(void); }
    	SYS_SBRK                     = 69  // { int sbrk(int incr); }
    	SYS_SSTK                     = 70  // { int sstk(int incr); }
    	SYS_OVADVISE                 = 72  // { int ovadvise(int anom); } vadvise \
    	SYS_MUNMAP                   = 73  // { int munmap(void *addr, size_t len); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/strategy.go

    	}
    }
    
    // returns true when the LoadBalancer Ingress IPMode fields are in use.
    func loadbalancerIPModeInUse(svc *api.Service) bool {
    	if svc == nil {
    		return false
    	}
    	for _, ing := range svc.Status.LoadBalancer.Ingress {
    		if ing.IPMode != nil {
    			return true
    		}
    	}
    	return false
    }
    
    func sameStringSlice(a []string, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_MSYNC         = 65  // { int msync(void *addr, size_t len, int flags); }
    	SYS_VFORK         = 66  // { pid_t vfork(void); }
    	SYS_SBRK          = 69  // { int sbrk(int incr); }
    	SYS_SSTK          = 70  // { int sstk(int incr); }
    	SYS_MUNMAP        = 73  // { int munmap(void *addr, size_t len); }
    	SYS_MPROTECT      = 74  // { int mprotect(void *addr, size_t len, int prot); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
Back to top