Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 645 for reachable (0.18 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller.go

    	SyncTimeout time.Duration
    
    	// Revision of this Istiod instance
    	Revision string
    
    	ConfigCluster bool
    
    	CniNamespace string
    }
    
    // kubernetesNode represents a kubernetes node that is reachable externally
    type kubernetesNode struct {
    	address string
    	labels  labels.Instance
    }
    
    // controllerInterface is a simplified interface for the Controller used for testing.
    type controllerInterface interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. cmd/notification.go

    		client := client
    		ng.Go(GlobalContext, func() error {
    			return client.SignalService(sig, "", dryRun)
    		}, idx, *client.host)
    	}
    	return ng.Wait()
    }
    
    var errPeerNotReachable = errors.New("peer is not reachable")
    
    // GetLocks - makes GetLocks RPC call on all peers.
    func (sys *NotificationSys) GetLocks(ctx context.Context, r *http.Request) []*PeerLocks {
    	locksResp := make([]*PeerLocks, len(sys.peerClients))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  3. src/runtime/mgcsweep.go

    				}
    			}
    		} else {
    			// object is still live
    			if siter.s.kind == _KindSpecialReachable {
    				special := siter.unlinkAndNext()
    				(*specialReachable)(unsafe.Pointer(special)).reachable = true
    				freeSpecial(special, unsafe.Pointer(p), size)
    			} else {
    				// keep special record
    				siter.next()
    			}
    		}
    	}
    	if hadSpecials && s.specials == nil {
    		spanHasNoSpecials(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks.go

    // Check validates if hostname match dns subdomain regex.
    // Check hostname length and format
    func (hc HostnameCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("checking whether the given node name is valid and reachable using net.LookupHost")
    	for _, msg := range validation.IsQualifiedName(hc.nodeName) {
    		warnings = append(warnings, errors.Errorf("invalid node name format %q: %s", hc.nodeName, msg))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    // serviceIndex is an index of all services by various fields for easy access during push.
    type serviceIndex struct {
    	// privateByNamespace are services that can reachable within the same namespace, with exportTo "."
    	privateByNamespace map[string][]*Service
    	// public are services reachable within the mesh with exportTo "*"
    	public []*Service
    	// exportedToNamespace are services that were made visible to this namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      repeated string except = 2;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    // DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		})
    	}
    }
    
    // monitorNodeHealth verifies node health are constantly updated by kubelet, and if not, post "NodeReady==ConditionUnknown".
    // This function will
    //   - add nodes which are not ready or not reachable for a long period of time to a rate-limited
    //     queue so that NoExecute taints can be added by the goroutine running the doNoExecuteTaintingPass function,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedNil:
    			// Unsafe.Pointer is a basic type that includes nil.
    			if !hasNil(target) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      repeated string except = 2;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    // DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilder.java

       * Specifies that each value (not key) stored in the cache should be wrapped in a {@link
       * WeakReference} (by default, strong references are used).
       *
       * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
       * candidate for caching; consider {@link #softValues} instead.
       *
       * <p><b>Note:</b> when this method is used, the resulting cache will use identity ({@code ==})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top