Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,731 for Dlog (0.04 sec)

  1. staging/publishing/import-restrictions.yaml

      - k8s.io/apimachinery
      - k8s.io/kube-openapi
      - k8s.io/utils/clock
      - k8s.io/utils/net
      - k8s.io/utils/strings
      - k8s.io/klog
      - k8s.io/utils/ptr
    
    - baseImportPath: "./staging/src/k8s.io/api"
      allowedImports:
      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/klog
    
    - baseImportPath: "./staging/src/k8s.io/code-generator"
      ignoredSubTrees:
      - "./staging/src/k8s.io/code-generator/examples"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/migrate.go

    )
    
    func main() {
    	registerFlags(migrateCmd.Flags(), &opts)
    	err := migrateCmd.Execute()
    	if err != nil {
    		klog.Errorf("Failed to execute migratecmd: %s", err)
    	}
    }
    
    // runMigrate starts the migration.
    func runMigrate() {
    	if err := opts.validateAndDefault(); err != nil {
    		klog.Fatalf("%v", err)
    	}
    	copyBinaries()
    
    	target := &EtcdVersionPair{
    		version:        MustParseEtcdVersion(opts.targetVersion),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/disk_manager.go

    	if err != nil {
    		klog.Errorf("Failed to bind mount: source:%s, target:%s, err:%v", globalPDPath, volPath, err)
    		noMnt, mntErr := b.mounter.IsLikelyNotMountPoint(volPath)
    		if mntErr != nil {
    			klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
    			return err
    		}
    		if !noMnt {
    			if mntErr = b.mounter.Unmount(volPath); mntErr != nil {
    				klog.Errorf("Failed to unmount: %v", mntErr)
    				return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/log/slog/example_logvaluer_group_test.go

    package slog_test
    
    import "log/slog"
    
    type Name struct {
    	First, Last string
    }
    
    // LogValue implements slog.LogValuer.
    // It returns a group containing the fields of
    // the Name, so that they appear together in the log output.
    func (n Name) LogValue() slog.Value {
    	return slog.GroupValue(
    		slog.String("first", n.First),
    		slog.String("last", n.Last))
    }
    
    func ExampleLogValuer_group() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 825 bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    				"pod", klog.KObj(pod), "createdPod", klog.KObj(modifiedPod))
    			return framework.Queue, nil
    		}
    		logger.V(5).Info("a scheduled pod was created, but it doesn't matches with the pod's topology spread constraints",
    			"pod", klog.KObj(pod), "createdPod", klog.KObj(modifiedPod))
    		return framework.QueueSkip, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer.go

    		//ok
    	default:
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "can only read resources of this type", nil
    	}
    
    	if len(attrs.GetSubresource()) > 0 {
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "cannot read subresource", nil
    	}
    	if len(attrs.GetNamespace()) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/cpu_manager.go

    			if err != nil {
    				klog.V(4).InfoS("ReconcileState: skipping container; ID not found in pod status", "pod", klog.KObj(pod), "containerName", container.Name, "err", err)
    				failure = append(failure, reconciledContainer{pod.Name, container.Name, ""})
    				continue
    			}
    
    			cstatus, err := findContainerStatusByName(&pstatus, container.Name)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  8. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_stack_test.go

    		if err := fs.Set(flag, value); err != nil {
    			fmt.Printf("Unexpected error configuring klog: %v", err)
    			return
    		}
    	}
    	var buffer bytes.Buffer
    	klog.SetOutput(&buffer)
    
    	logger := klog.Background()
    	logger = klog.LoggerWithValues(logger, "request", 42)
    	ctx := klog.NewContext(context.Background(), logger)
    
    	// The line number of the next call must be at line 60. Here are some
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher.go

    			// clean up metadata
    			klog.Errorf(log("attacher.MountDevice failed: %v", err))
    			if err := removeMountDir(c.plugin, deviceMountPath); err != nil {
    				klog.Error(log("attacher.MountDevice failed to remove mount dir after error [%s]: %v", deviceMountPath, err))
    			}
    		}
    	}()
    
    	if err != nil {
    		errMsg := log("failed to save volume info data: %v", err)
    		klog.Error(errMsg)
    		return errors.New(errMsg)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    	mu      sync.Mutex
    	hashes  testHashes
    	records [][]byte
    	lookup  map[string]int64
    }
    
    // testHashes implements tlog.HashReader, reading from a slice.
    type testHashes []tlog.Hash
    
    func (h testHashes) ReadHashes(indexes []int64) ([]tlog.Hash, error) {
    	var list []tlog.Hash
    	for _, id := range indexes {
    		list = append(list, h[id])
    	}
    	return list, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top