Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 207 for INITIALIZING (0.37 sec)

  1. pkg/registry/rbac/rest/storage_rbac.go

    }
    
    func (p *PolicyData) EnsureRBACPolicy() genericapiserver.PostStartHookFunc {
    	return func(hookContext genericapiserver.PostStartHookContext) error {
    		// initializing roles is really important.  On some e2e runs, we've seen cases where etcd is down when the server
    		// starts, the roles don't initialize, and nothing works.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  2. src/embed/embed.go

    //
    // FS implements fs.FS, so it can be used with any package that understands
    // file system interfaces, including net/http, text/template, and html/template.
    //
    // See the package documentation for more details about initializing an FS.
    type FS struct {
    	// The compiler knows the layout of this struct.
    	// See cmd/compile/internal/staticdata's WriteEmbed.
    	//
    	// The files list is sorted by name but not by simple string comparison.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. 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)
  4. pkg/credentialprovider/plugin/plugin.go

    			}
    
    			return fmt.Errorf("error inspecting binary executable %s: %w", pluginBin, err)
    		}
    
    		plugin, err := newPluginProvider(pluginBinDir, provider)
    		if err != nil {
    			return fmt.Errorf("error initializing plugin provider %s: %w", provider.Name, err)
    		}
    
    		credentialprovider.RegisterCredentialProvider(provider.Name, plugin)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    }
    
    func (f Form) doAppend(out []byte, src input, n int) []byte {
    	if n == 0 {
    		return out
    	}
    	ft := formTable[f]
    	// Attempt to do a quickSpan first so we can avoid initializing the reorderBuffer.
    	if len(out) == 0 {
    		p, _ := ft.quickSpan(src, 0, n, true)
    		out = src.appendSlice(out, 0, p)
    		if p == n {
    			return out
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  10. 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)
Back to top