Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 312 for Fname (0.05 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    			if !interestingToCompare(dentry.fname) {
    				continue
    			}
    			if eidx >= len(eentries) {
    				t.Errorf("testcase %s missing expected entry for %s, skipping", tc, dentry.fname)
    				continue
    			}
    			eentry := eentries[eidx]
    			ecst := ecsites[eidx]
    			eidx++
    			if dentry.fname != eentry.fname {
    				t.Errorf("got fn %q wanted %q, skipping checks",
    					dentry.fname, eentry.fname)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/inl_test.go

    		"compress/flate.byLiteral.Swap": true,
    	}
    
    	notInlinedReason := make(map[string]string)
    	pkgs := make([]string, 0, len(want))
    	for pname, fnames := range want {
    		pkgs = append(pkgs, pname)
    		for _, fname := range fnames {
    			fullName := pname + "." + fname
    			if _, ok := notInlinedReason[fullName]; ok {
    				t.Errorf("duplicate func: %s", fullName)
    			}
    			notInlinedReason[fullName] = "unknown reason"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/test/kube/dump.go

    						c.Name(), pod.Namespace, pod.Name, container.Name, restarts, prow.ArtifactsURL(fname))
    				}
    				l, err := c.PodLogs(context.TODO(), pod.Name, pod.Namespace, container.Name, true /* previousLog */)
    				if err != nil {
    					scopes.Framework.Warnf("Unable to get previous logs for cluster/pod/container: %s/%s/%s/%s: %v",
    						c.Name(), pod.Namespace, pod.Name, container.Name, err)
    				}
    
    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. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		name = name[:maxNameLen-len(bad)] + bad
    	}
    	return name
    }
    
    // DecodeStack expands the (compressed) stack encoded in the counter name.
    func DecodeStack(ename string) string {
    	if !strings.Contains(ename, "\n") {
    		return ename // not a stack counter
    	}
    	lines := strings.Split(ename, "\n")
    	var lastPath string // empty or ends with .
    	for i, line := range lines {
    		path, rest := cutLastDot(line)
    		if len(path) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/pgo_inl_test.go

    			curPkg = splits[0]
    			continue
    		}
    		if m := haveInlined.FindStringSubmatch(line); m != nil {
    			fname := m[1]
    			delete(notInlinedReason, curPkg+"."+fname)
    			continue
    		}
    		if m := canInline.FindStringSubmatch(line); m != nil {
    			fname := m[1]
    			fullname := curPkg + "." + fname
    			// If function must be inlined somewhere, being inlinable is not enough
    			if _, ok := must[fullname]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/go/doc/exports.go

    		// which are not filtered for top-level function declarations.
    		if name := s.Name.Name; token.IsExported(name) {
    			r.filterType(r.lookupType(s.Name.Name), s.Type)
    			return true
    		} else if IsPredeclared(name) {
    			if r.shadowedPredecl == nil {
    				r.shadowedPredecl = make(map[string]bool)
    			}
    			r.shadowedPredecl[name] = true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	for _, fi := range fis {
    		if strings.HasSuffix(fi.Name(), ".v1.count") {
    			fname := filepath.Join(localdir, fi.Name())
    			_, expiry, err := u.counterDateSpan(fname)
    			switch {
    			case err != nil:
    				u.logger.Printf("Error reading expiry for count file %s: %v", fi.Name(), err)
    			case expiry.After(u.startTime):
    				u.logger.Printf("Skipping count file %s: still active", fi.Name())
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/function.cc

      std::string fname;
      {
        const tensorflow::FunctionDef* fdef = nullptr;
        TF_RETURN_IF_ERROR(trace->GetFunctionDef(&fdef));
        fname = fdef->signature().name();
      }
      // TODO(srbs): Update RegisterFunction to accept AbstractFunctionPtr.
      TF_RETURN_IF_ERROR(ctx->RegisterFunction(trace.get()));
      auto cleanup = absl::MakeCleanup(
          [fname, ctx]() { ctx->RemoveFunction(fname).IgnoreError(); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		}
    	}
    	for column < n {
    		column++
    		str.WriteRune(' ')
    	}
    	return str.String()
    }
    
    func canonicalizeFileName(fname string) string {
    	fname = strings.TrimPrefix(fname, "/proc/self/cwd/")
    	fname = strings.TrimPrefix(fname, "./")
    	return filepath.Clean(fname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. operator/pkg/helm/renderer.go

    	}
    	var bfs []*loader.BufferedFile
    	for _, fname := range fnames {
    		b, err := fs.ReadFile(h.files, fname)
    		if err != nil {
    			return fmt.Errorf("read file: %v", err)
    		}
    		// Helm expects unix / separator, but on windows this will be \
    		name := strings.ReplaceAll(stripPrefix(fname, h.dir), string(filepath.Separator), "/")
    		bf := &loader.BufferedFile{
    			Name: name,
    			Data: b,
    		}
    		bfs = append(bfs, bf)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top