Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 554 for reachable (0.25 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    }
    
    var map_Ingress = map[string]string{
    	"":         "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.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/symbolbuilder.go

    func (p *relocsByOff) Less(i, j int) bool { return p.relocs[i].Off() < p.relocs[j].Off() }
    func (p *relocsByOff) Swap(i, j int) {
    	p.relocs[i], p.relocs[j] = p.relocs[j], p.relocs[i]
    }
    
    func (sb *SymbolBuilder) Reachable() bool {
    	return sb.l.AttrReachable(sb.symIdx)
    }
    
    func (sb *SymbolBuilder) SetReachable(v bool) {
    	sb.l.SetAttrReachable(sb.symIdx, v)
    }
    
    func (sb *SymbolBuilder) ReadOnly() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    // global map variable V to its associated outlined init function.
    // These relocation ensure that if the map var itself is determined to
    // be reachable at link time, we also mark the init function as
    // reachable.
    func AddKeepRelocations() {
    	if varToMapInit == nil {
    		return
    	}
    	for k, v := range varToMapInit {
    		// Add R_KEEP relocation from map to init function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/likelyadjust.go

    	}
    
    	// Reducible-loop-nest-finding.
    	for _, b := range po {
    		if f.pass != nil && f.pass.debug > 3 {
    			fmt.Printf("loop finding at %s\n", b)
    		}
    
    		var innermost *loop // innermost header reachable from this block
    
    		// IF any successor s of b is in a loop headed by h
    		// AND h dominates b
    		// THEN b is in the loop headed by h.
    		//
    		// Choose the first/innermost such h.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      repeated HTTPIngressPath paths = 1;
    }
    
    // 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.
    message Ingress {
      // Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	if s == nil {
    		return
    	}
    
    	fs.IPVar(&s.BindAddress, "bind-address", s.BindAddress, ""+
    		"The IP address on which to listen for the --secure-port port. The "+
    		"associated interface(s) must be reachable by the rest of the cluster, and by CLI/web "+
    		"clients. If blank or an unspecified address (0.0.0.0 or ::), all interfaces and IP address families will be used.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    	// HeapAlloc is bytes of allocated heap objects.
    	//
    	// "Allocated" heap objects include all reachable objects, as
    	// well as unreachable objects that the garbage collector has
    	// not yet freed. Specifically, HeapAlloc increases as heap
    	// objects are allocated and decreases as the heap is swept
    	// and unreachable objects are freed. Sweeping occurs
    	// incrementally between GC cycles, so these two processes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. internal/logger/target/http/http.go

    func (h *Target) Endpoint() string {
    	return h.config.Endpoint.String()
    }
    
    func (h *Target) String() string {
    	return h.config.Name
    }
    
    // IsOnline returns true if the target is reachable using a cached value
    func (h *Target) IsOnline(ctx context.Context) bool {
    	return atomic.LoadInt32(&h.status) == statusOnline
    }
    
    // Stats returns the target statistics.
    func (h *Target) Stats() types.TargetStats {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.IPVar(&s.AdvertiseAddress, "advertise-address", s.AdvertiseAddress, ""+
    		"The IP address on which to advertise the apiserver to members of the cluster. This "+
    		"address must be reachable by the rest of the cluster. If blank, the --bind-address "+
    		"will be used. If --bind-address is unspecified, the host's default interface will "+
    		"be used.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. cmd/erasure.go

    				return
    			}
    
    			di, err := disk.DiskInfo(context.Background(), DiskInfoOptions{})
    			infos[i] = di
    			if err != nil {
    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				infos[i].Error = err.Error()
    			}
    		}()
    	}
    	wg.Wait()
    
    	var scanningDisks, healingDisks []StorageAPI
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top