Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for INITIALIZING (0.19 sec)

  1. pkg/kubelet/logs/container_log_manager.go

    		),
    		monitoringPeriod: monitorInterval,
    	}, nil
    }
    
    // Start the container log manager.
    func (c *containerLogManager) Start() {
    	ctx := context.Background()
    	klog.InfoS("Initializing container log rotate workers", "workers", c.maxWorkers, "monitorPeriod", c.monitoringPeriod)
    	for i := 0; i < c.maxWorkers; i++ {
    		worker := i + 1
    		go c.processQueueItems(ctx, worker)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	} else {
    		pm.prober = prober
    	}
    	if err := pm.prober.Init(); err != nil {
    		// Prober init failure should not affect the initialization of other plugins.
    		klog.ErrorS(err, "Error initializing dynamic plugin prober")
    		pm.prober = &dummyPluginProber{}
    	}
    
    	if pm.plugins == nil {
    		pm.plugins = map[string]VolumePlugin{}
    	}
    	if pm.probedPlugins == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	var endpoints []*v1.EndpointSlice
    	if filtered {
    		endpoints = esc.slices.List(ns, klabels.Everything())
    	} else {
    		endpoints = esc.slices.ListUnfiltered(ns, klabels.Everything())
    	}
    	log.Debugf("initializing %d endpointslices", len(endpoints))
    	for _, s := range endpoints {
    		err = multierror.Append(err, esc.onEvent(nil, s, model.EventAdd))
    	}
    	return err.ErrorOrNil()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/scheduler/scheduler.go

    		frameworkruntime.WithExtenders(extenders),
    		frameworkruntime.WithMetricsRecorder(metricsRecorder),
    		frameworkruntime.WithWaitingPods(waitingPods),
    	)
    	if err != nil {
    		return nil, fmt.Errorf("initializing profiles: %v", err)
    	}
    
    	if len(profiles) == 0 {
    		return nil, errors.New("at least one profile is required")
    	}
    
    	preEnqueuePluginMap := make(map[string][]framework.PreEnqueuePlugin)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

              "expirationTime": "2022-03-18T13:04:49Z"
            }
          ]
        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/ztunnel",
          "state": "Initializing",
          "certChain": []
        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/another-sa",
          "state": "Unavailable: the identity is no longer needed",
          "certChain": []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    			}
    			initializing = true
    		case container.State.Waiting != nil && len(container.State.Waiting.Reason) > 0 && container.State.Waiting.Reason != "PodInitializing":
    			reason = "Init:" + container.State.Waiting.Reason
    			initializing = true
    		default:
    			reason = fmt.Sprintf("Init:%d/%d", i, len(pod.Spec.InitContainers))
    			initializing = true
    		}
    		break
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    if (!componentMetaDataResolver.isFetchingMetadataCheap(targetComponent.getComponentId())) {
                        // Avoid initializing the list if there are no components requiring download (a common case)
                        if (requiringDownload == null) {
                            requiringDownload = new ArrayList<>();
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	if err := newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Initializing config.json failed")
    	}
    
    	objectName := `\../.minio.sys/config/hello.txt`
    
    	// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    	rec := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    // fail3: CALL panicSlice3C (a, b)
    //
    // When we register allocate that code, we want the same register to be used for
    // the first arg of panicSlice3Acap and the second arg to panicSlice3B. That way,
    // initializing that register once will satisfy both calls.
    // That desire ends up dividing the set of bounds check calls into 3 sets. This function
    // determines which set to use for a given panic call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    func goexit(neverCallThisFunction)
    
    // publicationBarrier performs a store/store barrier (a "publication"
    // or "export" barrier). Some form of synchronization is required
    // between initializing an object and making that object accessible to
    // another processor. Without synchronization, the initialization
    // writes and the "publication" write may be reordered, allowing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top