Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 564 for begins (1.14 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceMirroringController struct {
    	*Controller
    	endpointsStore     cache.Store
    	endpointSliceStore cache.Store
    	serviceStore       cache.Store
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    }
    
    func (grm *nestedPendingOperations) operationComplete(key operationKey, err *error) {
    	// Defer operations are executed in Last-In is First-Out order. In this case
    	// the lock is acquired first when operationCompletes begins, and is
    	// released when the method finishes, after the lock is released cond is
    	// signaled to wake waiting goroutine.
    	defer grm.cond.Signal()
    	grm.lock.Lock()
    	defer grm.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/engine.go

    // Adding single quotes around text keeps spaces in that text from being treated
    // as word separators and also disables environment variable expansion.
    // Inside a single-quoted block of text, a repeated single quote indicates
    // a literal single quote, as in:
    //
    //	'Don''t communicate by sharing memory.'
    //
    // A line beginning with # is a comment and conventionally explains what is
    // being done or tested at the start of a new section of the script.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    		peeraddress:      peeraddress,
    		endpointInterval: endpointInterval,
    		client:           client,
    		stopCh:           make(chan struct{}),
    	}
    }
    
    // Start begins the peer endpoint lease reconciler loop that must exist for bootstrapping
    // a cluster.
    func (c *PeerEndpointLeaseController) Start(stopCh <-chan struct{}) {
    	localStopCh := make(chan struct{})
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

        this.name = name;
        this.parts = parts;
      }
    
      /**
       * The index in the {@link #parts()} list at which the public suffix begins. For example, for the
       * domain name {@code myblog.blogspot.co.uk}, the value would be 1 (the index of the {@code
       * blogspot} part). The value is negative (specifically, {@link #NO_SUFFIX_FOUND}) if no public
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/types.go

    	// interfaceNamePrefix is an interface name prefix. When DetectLocalMode is set to
    	// LocalModeInterfaceNamePrefix, kube-proxy will consider traffic to be local if
    	// it originates from any interface whose name begins with this prefix.
    	InterfaceNamePrefix string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // KubeProxyConfiguration contains everything necessary to configure the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InternetDomainName.java

        this.name = name;
        this.parts = parts;
      }
    
      /**
       * The index in the {@link #parts()} list at which the public suffix begins. For example, for the
       * domain name {@code myblog.blogspot.co.uk}, the value would be 1 (the index of the {@code
       * blogspot} part). The value is negative (specifically, {@link #NO_SUFFIX_FOUND}) if no public
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. src/regexp/regexp.go

    }
    
    // Compile parses a regular expression and returns, if successful,
    // a [Regexp] object that can be used to match against text.
    //
    // When matching against text, the regexp returns a match that
    // begins as early as possible in the input (leftmost), and among those
    // it chooses the one that a backtracking search would have found first.
    // This so-called leftmost-first matching is the same semantics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/search/search.go

    	match := pkgpattern.MatchPattern(slashPattern)
    
    	// Find directory to begin the scan.
    	// Could be smarter but this one optimization
    	// is enough for now, since ... is usually at the
    	// end of a path.
    	i := strings.Index(cleanPattern, "...")
    	dir, _ := filepath.Split(cleanPattern[:i])
    
    	// pattern begins with ./ or ../.
    	// path.Clean will discard the ./ but not the ../.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/internal/archive/archive.go

    			r.skip(1)
    		}
    	}
    	return nil
    }
    
    // parseObject parses a single Go object file.
    // The object file consists of a textual header ending in "\n!\n"
    // and then the part we want to parse begins.
    // The format of that part is defined in a comment at the top
    // of cmd/internal/goobj/objfile.go.
    func (r *objReader) parseObject(o *GoObj, size int64) error {
    	h := make([]byte, 0, 256)
    	var c1, c2, c3 byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top