Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 288 for unlabel (0.16 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    			switch pType {
    			case "heap":
    				const javaHeapzSamplingRate = 524288 // 512K
    				if s.Value[0] == 0 {
    					return nil, nil, fmt.Errorf("parsing sample %s: second value must be non-zero", line)
    				}
    				s.NumLabel = map[string][]int64{"bytes": {s.Value[1] / s.Value[0]}}
    				s.Value[0], s.Value[1] = scaleHeapSample(s.Value[0], s.Value[1], javaHeapzSamplingRate)
    			case "contention":
    				if period := p.Period; period != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. cmd/server-main.go

    	v, _, _, err := env.LookupEnv(config.EnvArgs)
    	if err != nil {
    		logger.FatalIf(err, "Unable to validate passed arguments in %s:%s",
    			config.EnvArgs, os.Getenv(config.EnvArgs))
    	}
    	if v == "" {
    		v, _, _, err = env.LookupEnv(config.EnvVolumes)
    		if err != nil {
    			logger.FatalIf(err, "Unable to validate passed arguments in %s:%s",
    				config.EnvVolumes, os.Getenv(config.EnvVolumes))
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  3. pkg/test/kube/dump.go

    				if err != nil {
    					scopes.Framework.Warnf("Unable to get core dumps %v for cluster/pod: %s/%s/%s: %v",
    						cd, c.Name(), pod.Namespace, pod.Name, err)
    					continue
    				}
    				fname := podOutputPath(workDir, c, pod, filepath.Base(cd))
    				if err = os.WriteFile(fname, []byte(stdout), os.ModePerm); err != nil {
    					scopes.Framework.Warnf("Unable to write envoy core dump log for cluster/pod: %s/%s/%s: %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. docs/debugging/reorder-disks/main.go

    		format, err := getFormatJSON(disk.path)
    		if err != nil {
    			log.Printf("Unable to read format.json from `%s`, error: %v\n", disk.path, err)
    			continue
    		}
    		foundDiskLoc, err := getDiskLocation(format)
    		if err != nil {
    			log.Printf("Unable to get disk location of `%s`, error: %v\n", disk.path, err)
    			continue
    		}
    		actualDisksName[foundDiskLoc] = disk.path
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pe.go

    	if v < Segdata.Filelen {
    		return f.dataSect.index, int64(v), nil
    	}
    	return f.bssSect.index, int64(v - Segdata.Filelen), nil
    }
    
    var isLabel = make(map[loader.Sym]bool)
    
    func AddPELabelSym(ldr *loader.Loader, s loader.Sym) {
    	isLabel[s] = true
    }
    
    // writeSymbols writes all COFF symbol table records.
    func (f *peFile) writeSymbols(ctxt *Link) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  6. pkg/registry/core/service/portallocator/controller/repair.go

    	})
    	if err != nil {
    		return fmt.Errorf("unable to refresh the port allocations: %v", err)
    	}
    	// If not yet initialized.
    	if snapshot.Range == "" {
    		snapshot.Range = c.portRange.String()
    	}
    	// Create an allocator because it is easy to use.
    	stored, err := portallocator.NewFromSnapshot(snapshot)
    	if err != nil {
    		return fmt.Errorf("unable to rebuild allocator from snapshot: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server_linux.go

    func watchForLockfileContention(path string, done chan struct{}) error {
    	watcher, err := inotify.NewWatcher()
    	if err != nil {
    		klog.ErrorS(err, "Unable to create watcher for lockfile")
    		return err
    	}
    	if err = watcher.AddWatch(path, inotify.InOpen|inotify.InDeleteSelf); err != nil {
    		klog.ErrorS(err, "Unable to watch lockfile")
    		watcher.Close()
    		return err
    	}
    	go func() {
    		select {
    		case ev := <-watcher.Event:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 26 09:04:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. .github/workflows/issue-metadata.yml

    name: Check issues metadata
    
    on:
      issues:
        types: [ opened, unlabeled, closed ]
    
    permissions: {}
    
    jobs:
      check_issue_metadata:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that issues have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 463 bytes
    - Viewed (0)
  9. cmd/sftp-server_test.go

    	accessKey, secretKey := mustGenerateCredentials(c)
    	err := s.adm.SetUser(ctx, accessKey, secretKey, madmin.AccountEnabled)
    	if err != nil {
    		c.Fatalf("Unable to set user: %v", err)
    	}
    
    	err = s.adm.SetPolicy(ctx, "readwrite", accessKey, false)
    	if err != nil {
    		c.Fatalf("unable to set policy: %v", err)
    	}
    
    	newSSHCon := newSSHConnMock(accessKey + "=svc")
    	_, err = sshPasswordAuth(newSSHCon, []byte("invalid"))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/volume/util/fsquota/common/quota_common_linux_impl.go

    	if err != nil {
    		return 0, fmt.Errorf("unable to run xfs_quota: %v", err)
    	}
    	if data == "" && allowEmptyOutput {
    		return 0, nil
    	}
    	match := quotaParseRegexp.FindStringSubmatch(data)
    	if match == nil {
    		return 0, fmt.Errorf("unable to parse quota output '%s'", data)
    	}
    	size, err := strconv.ParseInt(match[1], 10, 64)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top