Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 562 for STARTING (0.45 sec)

  1. pkg/controller/volume/expand/expand_controller.go

    			return err
    		}
    
    		generatedOptions, err = expc.operationGenerator.GenerateExpandVolumeFunc(pvc, pv)
    		if err != nil {
    			logger.Error(err, "Error starting ExpandVolume for pvc with error", "PVC", klog.KObj(pvc), "err", err)
    			return err
    		}
    	}
    
    	logger.V(5).Info("Starting ExpandVolume for volume", "volumeName", util.GetPersistentVolumeClaimQualifiedName(pvc))
    	_, detailedErr := generatedOptions.Run()
    
    	return detailedErr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

         * being already present in that collection.
         * <p>
         * A match means that the first n lines starting at {@code startIdx} match the lines of the
         * expected deprecation warning.  If there are not n lines starting at {@code startIdx} left in
         * the list of lines, then no match is made.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/README.md

    To use IPVS mode, users should export the env `KUBE_PROXY_MODE=ipvs` to specify the IPVS mode before [starting the cluster](https://github.com/kubernetes/community/blob/master/contributors/devel/running-locally.md#starting-the-cluster):
    ```shell
    # before running `hack/local-up-cluster.sh`
    export KUBE_PROXY_MODE=ipvs
    ```
    
    ### GCE Cluster
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  4. src/text/template/parse/lex.go

    	itemDeclare                      // colon-equals (':=') introducing a declaration
    	itemEOF
    	itemField      // alphanumeric identifier starting with '.'
    	itemIdentifier // alphanumeric identifier not starting with '.'
    	itemLeftDelim  // left action delimiter
    	itemLeftParen  // '(' inside action
    	itemNumber     // simple number, including imaginary
    	itemPipe       // pipe symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

       * the already-requested ones are in service, otherwise we might create more threads than we need.
       *
       * We use [executeCallCount] and [runCallCount] to defend against starting more threads than we
       * need. Both fields are guarded by [lock].
       */
      private var executeCallCount = 0
      private var runCallCount = 0
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. helm/minio/values.yaml

    ## you can define additional policies with custom supported actions and resources
    policies: []
    ## writeexamplepolicy policy grants creation or deletion of buckets with name
    ## starting with example. In addition, grants objects write permissions on buckets starting with
    ## example.
    # - name: writeexamplepolicy
    #   statements:
    #     - effect: Allow  # this is the default
    #       resources:
    #         - 'arn:aws:s3:::example*/*'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (1)
  7. pkg/controller/cronjob/cronjob_controllerv2.go

    			logger.V(4).Info("Not starting job because timeZone is invalid", "cronjob", klog.KObj(cronJob), "timeZone", timeZone, "err", err)
    			jm.recorder.Eventf(cronJob, corev1.EventTypeWarning, "UnknownTimeZone", "invalid timeZone: %q: %s", timeZone, err)
    			return nil, updateStatus, nil
    		}
    	}
    
    	if cronJob.Spec.Suspend != nil && *cronJob.Spec.Suspend {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/metrics.go

    	PodWorkerStartDuration = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           PodWorkerStartDurationKey,
    			Help:           "Duration in seconds from kubelet seeing a pod to starting a worker.",
    			Buckets:        metrics.DefBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    func (s *Server) Start(stop <-chan struct{}) error {
    	log.Infof("Starting Istiod Server with primary cluster %s", s.clusterID)
    
    	if features.UnsafeFeaturesEnabled() {
    		log.Warn("Server is starting with unsafe features enabled")
    	}
    
    	// Now start all of the components.
    	if err := s.server.Start(stop); err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. doc/godebug.md

    packages that are built. For more fine-grained control,
    starting in Go 1.21, a main package's source files
    can include one or more `//go:debug` directives at the top of the file
    (preceding the `package` statement).
    The `godebug` lines in the previous example would be written:
    
    	//go:debug default=go1.21
    	//go:debug panicnil=1
    	//go:debug asynctimerchan=0
    
    Starting in Go 1.21, the Go toolchain treats a `//go:debug` directive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top