Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for runOnce (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    var FileRefreshDuration = 1 * time.Minute
    
    // ControllerRunner is a generic interface for starting a controller
    type ControllerRunner interface {
    	// RunOnce runs the sync loop a single time.  This useful for synchronous priming
    	RunOnce(ctx context.Context) error
    
    	// Run should be called a go .Run
    	Run(ctx context.Context, workers int)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

        val task =
          object : Task("task") {
            val schedules = mutableListOf(50.µs)
            val delays = mutableListOf(200.µs, -1)
    
            override fun runOnce(): Long {
              log += "run@${taskFaker.nanoTime}"
              if (schedules.isNotEmpty()) {
                redQueue.schedule(this, schedules.removeAt(0))
              }
              return delays.removeAt(0)
            }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/server.go

    			s.ClusterAuthenticationInfo.ClientCA.AddListener(controller)
    			if controller, ok := s.ClusterAuthenticationInfo.ClientCA.(dynamiccertificates.ControllerRunner); ok {
    				// runonce to be sure that we have a value.
    				if err := controller.RunOnce(ctx); err != nil {
    					runtime.HandleError(err)
    				}
    				go controller.Run(ctx, 1)
    			}
    		}
    		if s.ClusterAuthenticationInfo.RequestHeaderCA != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	c.currentlyServedContent = newContent // this is single threaded, so we have no locking issue
    
    	return nil
    }
    
    // RunOnce runs a single sync step to ensure that we have a valid starting configuration.
    func (c *DynamicServingCertificateController) RunOnce() error {
    	return c.syncCerts()
    }
    
    // Run starts the kube-apiserver and blocks until stopCh is closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. pkg/kubelet/runonce_test.go

    	// because runonce is never used in kubernetes now, we should deprioritize the cleanup work.
    	// TODO(random-liu) Fix the test, make it meaningful.
    	fakeRuntime.PodStatus = kubecontainer.PodStatus{
    		ContainerStatuses: []*kubecontainer.Status{
    			{
    				Name:  "bar",
    				State: kubecontainer.ContainerStateRunning,
    			},
    		},
    	}
    	results, err := kb.runOnce(ctx, pods, time.Millisecond)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	klog.V(2).InfoS("Loaded a new cert/key pair", "name", c.Name())
    
    	for _, listener := range c.listeners {
    		listener.Enqueue()
    	}
    
    	return nil
    }
    
    // RunOnce runs a single sync loop
    func (c *DynamicCertKeyPairContent) RunOnce(ctx context.Context) error {
    	return c.loadCertKeyPair()
    }
    
    // Run starts the controller and blocks until context is killed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	if !ok {
    		return true
    	}
    	if !bytes.Equal(existing.caBundle, caBundle) {
    		return true
    	}
    
    	return false
    }
    
    // RunOnce runs a single sync loop
    func (c *ConfigMapCAController) RunOnce(ctx context.Context) error {
    	// Ignore the error when running once because when using a dynamically loaded ca file, because we think it's better to have nothing for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    		return
    	}
    
    	// doesn't matter what workers say, only start one.
    	go wait.Until(c.runWorker, time.Second, ctx.Done())
    
    	<-ctx.Done()
    }
    
    // // RunOnce runs a single sync loop
    func (c *RequestHeaderAuthRequestController) RunOnce(ctx context.Context) error {
    	configMap, err := c.client.CoreV1().ConfigMaps(c.configmapNamespace).Get(ctx, c.configmapName, metav1.GetOptions{})
    	switch {
    	case errors.IsNotFound(err):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

      private val cleanupTask =
        object : Task("$okHttpName ConnectionPool connection closer") {
          override fun runOnce(): Long = closeConnections(System.nanoTime())
        }
    
      private fun AddressState.scheduleOpener() {
        queue.schedule(
          object : Task("$okHttpName ConnectionPool connection opener") {
            override fun runOnce(): Long = openConnections(this@scheduleOpener)
          },
        )
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    		klog.ErrorS(err, "Failed to set rlimit on max file handles")
    	}
    
    	// process pods and exit.
    	if runOnce {
    		if _, err := k.RunOnce(podCfg.Updates()); err != nil {
    			return fmt.Errorf("runonce failed: %w", err)
    		}
    		klog.InfoS("Started kubelet as runonce")
    	} else {
    		startKubelet(k, podCfg, &kubeServer.KubeletConfiguration, kubeDeps, kubeServer.EnableServer)
    		klog.InfoS("Started kubelet")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top