Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 562 for STARTING (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	// can get a different RV because etcd can be touched in between the initial list operation (if that's what you're doing first)
    	// and the storage cache reflector starting.
    	// Later, you can issue a watch with the REST apis list.RV and end up earlier than the storage cacher.
    	// The general working model is that if you get a "resourceVersion too old" message, you re-list and rewatch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/doc.go

    identical to the PPC64 mneumonics, such as VMX and VSX instructions. Not all detail
    is included here; refer to the Power ISA document if interested in more detail.
    
    Starting with Go 1.15 the Go objdump supports the -gnu option, which provides a
    side by side view of the Go assembler and the PPC64 assembler output. This is
    extremely helpful in determining what final PPC64 assembly is generated from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. plugin/pkg/admission/priority/admission_test.go

    			"delete operation with default class",
    			[]*scheduling.PriorityClass{},
    			defaultClass1,
    			nil,
    			admission.Delete,
    			false,
    		},
    	}
    
    	for _, test := range tests {
    		klog.V(4).Infof("starting test %q", test.name)
    
    		ctrl := NewPlugin()
    		// Add existing priority classes.
    		if err := addPriorityClasses(ctrl, test.existingClasses); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 18:43:48 UTC 2022
    - 21.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Graphs.java

      // Graph query methods
    
      /**
       * Returns true if {@code graph} has at least one cycle. A cycle is defined as a non-empty subset
       * of edges in a graph arranged to form a path (a sequence of adjacent outgoing edges) starting
       * and ending with the same node.
       *
       * <p>This method will detect any non-empty cycle, including self-loops (a cycle of length 1).
       */
      public static <N> boolean hasCycle(Graph<N> graph) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsOrder(a, c);
            checkVersionsOrder(c, d);
            checkVersionsOrder(b, d);
            checkVersionsOrder(a, d);
        }
    
        /**
         * Test all versions are equal when starting with many leading zeroes regardless of string length
         * (related to MNG-6572 optimization)
         */
        @Test
        void testVersionEqualWithLeadingZeroes() {
            // versions with string lengths from 1 to 19
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/net/http/cgi/host.go

    // This file implements the host side of CGI (being the webserver
    // parent process).
    
    // Package cgi implements CGI (Common Gateway Interface) as specified
    // in RFC 3875.
    //
    // Note that using CGI means starting a new process to handle each
    // request, which is typically less efficient than using a
    // long-running server. This package is intended primarily for
    // compatibility with existing systems.
    package cgi
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    type patchTestCase struct {
    	name string
    
    	// admission chain to use, nil is fine
    	admissionMutation   mutateObjectUpdateFunc
    	admissionValidation rest.ValidateObjectUpdateFunc
    
    	// startingPod is used as the starting point for the first Update
    	startingPod *example.Pod
    	// changedPod can be set as the "destination" pod for the patch, and the test will compute a patch from the startingPod to the changedPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/branches.go

    	for _, fwd := range fwdGotos {
    		name := fwd.Label.Value
    		if l := ls.labels[name]; l != nil {
    			l.used = true // avoid "defined and not used" error
    			ls.err(fwd.Label.Pos(), "goto %s jumps into block starting at %s", name, l.parent.start)
    		} else {
    			ls.err(fwd.Label.Pos(), "label %s not defined", name)
    		}
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for _, l := range ls.labels {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/server.go

    func Run(ctx context.Context, cc *schedulerserverconfig.CompletedConfig, sched *scheduler.Scheduler) error {
    	logger := klog.FromContext(ctx)
    
    	// To help debugging, immediately log version
    	logger.Info("Starting Kubernetes Scheduler", "version", version.Get())
    
    	logger.Info("Golang settings", "GOGC", os.Getenv("GOGC"), "GOMAXPROCS", os.Getenv("GOMAXPROCS"), "GOTRACEBACK", os.Getenv("GOTRACEBACK"))
    
    	// Configz registration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/aggregator.go

    		if crdAPIEnabled {
    			go crdRegistrationController.Run(5, context.Done())
    		}
    		go func() {
    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top