Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,131 for STARTED (0.19 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/factory.go

    	informers map[reflect.Type]cache.SharedIndexInformer
    	// startedInformers is used for tracking which informers have been started.
    	// This allows Start() to be called multiple times safely.
    	startedInformers map[reflect.Type]bool
    	// wg tracks how many goroutines were started.
    	wg sync.WaitGroup
    	// shuttingDown is true when Shutdown has been called. It may still be running
    	// because it needs to wait for goroutines.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    Next steps:
    {{- if (eq .Values.profile "ambient") }}
      * Get started with ambient: https://istio.io/latest/docs/ops/ambient/getting-started/
      * Review ambient's architecture: https://istio.io/latest/docs/ops/ambient/architecture/
    {{- else }}
      * Deploy a Gateway: https://istio.io/latest/docs/setup/additional-setup/gateway/
      * Try out our tasks to get started on common configurations:
        * https://istio.io/latest/docs/tasks/traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	}
    	if err == nil {
    		if remountingLogStr == "" {
    			klog.V(1).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		} else {
    			klog.V(5).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            _ * startEvent.getDisplayName() >> 'task started'
            _ * startEvent.getDescriptor() >> taskDescriptor
    
            adapter.onEvent(startEvent)
    
            then:
            1 * listener.statusChanged(_ as TaskStartEvent) >> { TaskStartEvent event ->
                assertTrue event.eventTime == 999
                assertTrue event.displayName == "task started"
                assertTrue event.descriptor.name == 'some task'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  5. pkg/controller/resourcequota/resource_quota_monitor.go

    	<-qm.informersStarted
    
    	monitors := qm.monitors
    	started := 0
    	for _, monitor := range monitors {
    		if monitor.stopCh == nil {
    			monitor.stopCh = make(chan struct{})
    			qm.informerFactory.Start(qm.stopCh)
    			go monitor.Run()
    			started++
    		}
    	}
    	klog.FromContext(ctx).V(4).Info("QuotaMonitor finished starting monitors", "new", started, "total", len(monitors))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. samples/open-telemetry/tracing/README.md

    ```bash
    kubectl -n <namespace> apply -f ./telemetry.yaml
    ```
    
    In this example, we deploy it to the default namespace, which is where the sample apps
    from the [getting started](https://istio.io/latest/docs/setup/getting-started) are also deployed.
    
    ```bash
    kubectl apply -f ./telemetry.yaml
    ```
    
    The core config is:
    
    ```yaml
    tracing:
    - providers:
      - name: otel-tracing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForWorkItemOperationsTest.groovy

            _ * startEvent.getDisplayName() >> 'Test Work started'
            _ * startEvent.getDescriptor() >> workItemDescriptor
    
            adapter.onEvent(startEvent)
    
            then:
            1 * listener.statusChanged(_ as WorkItemStartEvent) >> { WorkItemStartEvent event ->
                assert event.eventTime == 999
                assert event.displayName == "Test Work started"
                assert event.descriptor.displayName == 'Test Work'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/common_test.go

    	return getTestRunningStatusWithStarted(true)
    }
    
    func getTestRunningStatusWithStarted(started bool) v1.PodStatus {
    	containerStatus := v1.ContainerStatus{
    		Name:        testContainerName,
    		ContainerID: testContainerID.String(),
    	}
    	containerStatus.State.Running = &v1.ContainerStateRunning{StartedAt: metav1.Now()}
    	containerStatus.Started = &started
    	podStatus := v1.PodStatus{
    		Phase:             v1.PodRunning,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. cmd/service.go

    // restartProcess starts a new process passing it the active fd's. It
    // doesn't fork, but starts a new process using the same environment and
    // arguments as when it was originally started. This allows for a newly
    // deployed binary to be started. It returns the pid of the newly started
    // process when successful.
    func restartProcess() error {
    	if runtime.GOOS == globalWindowsOSName {
    		cmd := exec.Command(os.Args[0], os.Args[1:]...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.json

              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
              "allocatedResourcesKey": "0"
            },
            "resources": {
              "limits": {
                "limitsKey": "0"
              },
              "requests": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top