Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for overlap (0.41 sec)

  1. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// to a chunking list request.
    	RemainingItemCount featuregate.Feature = "RemainingItemCount"
    
    	// owner: @wojtek-t
    	// beta: v1.31
    	//
    	// Enables resilient watchcache initialization to avoid controlplane
    	// overload.
    	ResilientWatchCacheInitialization featuregate.Feature = "ResilientWatchCacheInitialization"
    
    	// owner: @serathius
    	// beta: v1.30
    	//
    	// Allow watch cache to create a watch on a dedicated RPC.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		if pcCFLAGS, pcLDFLAGS, err = b.getPkgConfigFlags(a); err != nil {
    			return
    		}
    	}
    
    	// Compute overlays for .c/.cc/.h/etc. and if there are any overlays
    	// put correct contents of all those files in the objdir, to ensure
    	// the correct headers are included. nonGoOverlay is the overlay that
    	// points from nongo files to the copied files in objdir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. api/openapi-spec/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. src/os/signal/doc.go

    the non-Go startup code runs. If the non-Go startup code wishes to
    install its own signal handlers, it must take certain steps to keep Go
    working well. This section documents those steps and the overall
    effect changes to signal handler settings by the non-Go code can have
    on Go programs. In rare cases, the non-Go code may run before the Go
    code, in which case the next section also applies.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    			// "visited" map, but that is probably less efficient overall.
    			q := &ifacePair{xi, yi, p}
    			for p != nil {
    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    			// "visited" map, but that is probably less efficient overall.
    			q := &ifacePair{xi, yi, p}
    			for p != nil {
    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	modFilePath := modFilePath(MainModules.ModRoot(mainModule))
    	if _, ok := fsys.OverlayPath(modFilePath); ok {
    		if dirty {
    			return errors.New("updates to go.mod needed, but go.mod is part of the overlay specified with -overlay")
    		}
    		return nil
    	}
    	defer func() {
    		// At this point we have determined to make the go.mod file on disk equal to new.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "ready": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    	}
    }
    
    // Overlaps reports whether p and o contain any IP addresses in common.
    //
    // If p and o are of different address families or either have a zero
    // IP, it reports false. Like the Contains method, a prefix with an
    // IPv4-mapped IPv6 address is still treated as an IPv6 mask.
    func (p Prefix) Overlaps(o Prefix) bool {
    	if !p.IsValid() || !o.IsValid() {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/inline.go

    seems needlessly complex. two passes
    
    scan and find ` ` first.
    
    pass 1. scan and find [ and ]() and leave the rest alone.
    
    each completed one invokes emphasis on inner text and then on the overall list.
    
    */
    
    type Inline interface {
    	PrintHTML(*bytes.Buffer)
    	PrintText(*bytes.Buffer)
    	printMarkdown(*bytes.Buffer)
    }
    
    type Plain struct {
    	Text string
    }
    
    func (*Plain) Inline() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top