Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,666 for info2 (0.12 sec)

  1. pkg/test/framework/components/gcemetadata/kube.go

    	}
    
    	c.id = ctx.TrackResource(c)
    	var err error
    	scopes.Framework.Info("=== BEGIN: Deploy GCE Metadata Server ===")
    	defer func() {
    		if err != nil {
    			err = fmt.Errorf("gcemetadata deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy GCE Metadata Server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy GCE Metadata Server ===")
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    	dir := mounter.GetPath()
    	mounter.MetricsProvider = NewMetricsCsi(volumeHandle, dir, csiDriverName(driverName))
    	klog.V(4).Info(log("mounter created successfully"))
    	return mounter, nil
    }
    
    func (p *csiPlugin) NewUnmounter(specName string, podUID types.UID) (volume.Unmounter, error) {
    	klog.V(4).Infof(log("setting up unmounter for [name=%v, podUID=%v]", specName, podUID))
    
    	kvh, ok := p.host.(volume.KubeletVolumeHost)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	if plState == nil {
    		klog.V(7).Infof("plName=%s, plState==nil", plName)
    		return
    	}
    	useless := plState.quiescing && plState.numPending == 0 && plState.queues.IsIdle()
    	klog.V(7).Infof("plState.quiescing=%v, plState.numPending=%d, useless=%v", plState.quiescing, plState.numPending, useless)
    	if !useless {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    pairs, where the keys are strings and the values may be of any type.
    As an example,
    
    	slog.Info("hello", "count", 3)
    
    creates a record containing the time of the call,
    a level of Info, the message "hello", and a single
    pair with key "count" and value 3.
    
    The [Info] top-level function calls the [Logger.Info] method on the default Logger.
    In addition to [Logger.Info], there are methods for Debug, Warn and Error levels.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/fsys/fsys_test.go

    		dir, want := tc.dir, tc.want
    		infos, err := ReadDir(dir)
    		if err != nil {
    			t.Errorf("ReadDir(%q): %v", dir, err)
    			continue
    		}
    		// Sorted diff of want and infos.
    		for len(infos) > 0 || len(want) > 0 {
    			switch {
    			case len(want) == 0 || len(infos) > 0 && infos[0].Name() < want[0].name:
    				t.Errorf("ReadDir(%q): unexpected entry: %s IsDir=%v Size=%v", dir, infos[0].Name(), infos[0].IsDir(), infos[0].Size())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/registryredirector/kube.go

    	}
    	c.id = ctx.TrackResource(c)
    	var err error
    	scopes.Framework.Info("=== BEGIN: Deploy registry redirector server ===")
    	defer func() {
    		if err != nil {
    			err = fmt.Errorf("container registry deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy registry redirector server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy registry redirector server ===")
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_attacher.go

    	}
    	klog.V(4).Infof("attacher.GetDeviceMountPath succeeded, deviceMountPath: %s", deviceMountPath)
    	return deviceMountPath, nil
    }
    
    func (c *csiAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string, deviceMounterArgs volume.DeviceMounterArgs) error {
    	klog.V(4).Infof(log("attacher.MountDevice(%s, %s)", devicePath, deviceMountPath))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/test/mock/caserver.go

    	*pb.IstioCertificateResponse, error,
    ) {
    	caServerLog.Infof("received CSR request")
    	if s.shouldReject() {
    		caServerLog.Info("force rejecting CSR request")
    		return nil, status.Error(codes.Unavailable, "CA server is not available")
    	}
    	if s.sendEmpty() {
    		caServerLog.Info("force sending empty cert chain in CSR response")
    		response := &pb.IstioCertificateResponse{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	}
    	info, ok := kubeconfig.AuthInfos[userName]
    	if !ok {
    		return errors.Errorf("the file %q does not contain authentication for user %q", kubeconfigPath, cfg.NodeRegistration.Name)
    	}
    
    	// Update the client certificate and key of the node authorizer to point to the PEM symbolic link.
    	info.ClientKeyData = []byte{}
    	info.ClientCertificateData = []byte{}
    	info.ClientKey = pemPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/manager.go

    			// Add the prepared CDI devices to the claim info
    			err := m.cache.withLock(func() error {
    				info, exists := m.cache.get(claim.Name, claim.Namespace)
    				if !exists {
    					return fmt.Errorf("unable to get claim info for claim %s in namespace %s", claim.Name, claim.Namespace)
    				}
    				if err := info.setCDIDevices(pluginName, result.GetCDIDevices()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top