Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,885 for info2 (0.06 sec)

  1. pkg/volume/util/subpath/subpath_linux.go

    	mountFlags := []string{"--no-canonicalize"}
    	klog.V(5).Infof("bind mounting %q at %q", mountSource, bindPathTarget)
    	if err = mounter.MountSensitiveWithoutSystemdWithMountFlags(mountSource, bindPathTarget, "" /*fstype*/, options, nil /* sensitiveOptions */, mountFlags); err != nil {
    		return "", fmt.Errorf("error mounting %s: %s", subpath.Path, err)
    	}
    	success = true
    
    	klog.V(3).Infof("Bound SubPath %s into %s", subpath.Path, bindPathTarget)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/test/xdstest/grpc.go

    func (w *slowClientStream) RecvMsg(m any) error {
    	if w.recv > 0 {
    		sleep.UntilContext(w.Context(), w.recv)
    		log.Infof("delayed recv for %v", w.recv)
    	}
    	return w.ClientStream.RecvMsg(m)
    }
    
    func (w *slowClientStream) SendMsg(m any) error {
    	if w.send > 0 {
    		sleep.UntilContext(w.Context(), w.send)
    		log.Infof("delayed send for %v", w.send)
    	}
    	return w.ClientStream.SendMsg(m)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    }
    
    func removeNonPersistedResources(infos []*storageversion.ResourceInfo) []*storageversion.ResourceInfo {
    	var filtered []*storageversion.ResourceInfo
    	for _, info := range infos {
    		// if EncodingVersion is empty, then the apiserver does not
    		// need to register this resource via the storage version API,
    		// thus we can remove it.
    		if info != nil && len(info.EncodingVersion) > 0 {
    			filtered = append(filtered, info)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/etcd/local.go

    			klog.V(5).Infof("[etcd] member was already removed, because no member id exists for peer %s", etcdPeerAddress)
    			return nil
    		}
    		return err
    	}
    
    	klog.V(1).Infof("[etcd] removing etcd member: %s, id: %d", etcdPeerAddress, id)
    	members, err = etcdClient.RemoveMember(id)
    	if err != nil {
    		return err
    	}
    	klog.V(1).Infof("[etcd] Updated etcd member list: %v", members)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
Back to top