Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for Fname (0.04 sec)

  1. 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)
  2. 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)
  3. pkg/config/analysis/analyzers/webhook/webhook.go

    	if a.SkipServiceCheck {
    		return
    	}
    	for name, whs := range webhooks {
    		for _, wh := range whs {
    			if wh.ClientConfig.Service == nil {
    				// it is an url, skip it
    				continue
    			}
    			fname := resource.NewFullName(
    				resource.Namespace(wh.ClientConfig.Service.Namespace),
    				resource.LocalName(wh.ClientConfig.Service.Name))
    			if !context.Exists(gvk.Service, fname) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		fmt.Sprintf("%s-%s-%s-%4d%02d%02d-%d.log", prog, progVers, goVers, year, month, day, os.Getpid()),
    		" ", "")
    	fname := filepath.Join(debugDir, logBase)
    	if _, err := os.Stat(fname); err == nil {
    		// This process previously called upload.Run
    		return nil, nil
    	}
    	f, err := os.OpenFile(fname, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0666)
    	if err != nil {
    		if os.IsExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate.go

    	}
    
    	if len(mgArgs.Components) != 0 {
    		filteredManifests := name.ManifestMap{}
    		for _, cArg := range mgArgs.Components {
    			componentName := name.ComponentName(cArg)
    			if cManifests, ok := manifests[componentName]; ok {
    				filteredManifests[componentName] = cManifests
    			} else {
    				return fmt.Errorf("incorrect component name: %s. Valid options: %v", cArg, name.AllComponentNames)
    			}
    		}
    		manifests = filteredManifests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    		os.Exit(1)
    	}
    
    	if len(files) == 0 {
    		fmt.Fprintf(os.Stderr, "expect at least one new mutation to be written to testdata\n")
    		os.Exit(1)
    	}
    
    	fname := files[0].Name()
    	contents, err := ioutil.ReadFile(filepath.Join(dir, fname))
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if bytes.Equal(contents, []byte("aa")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/debug/plan9obj/file.go

    				elt, ok := fname[eltIdx]
    				if !ok {
    					return &formatError{-1, "bad filename code", eltIdx}
    				}
    				if n := len(ts.Name); n > 0 && ts.Name[n-1] != '/' {
    					ts.Name += "/"
    				}
    				ts.Name += elt
    			}
    		}
    		switch s.typ {
    		case 'f':
    			fname[uint16(s.value)] = ts.Name
    		}
    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	return syms, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. tests/fuzz/oss_fuzz_build.sh

    grep --line-buffered --include '*_test.go' -Pr 'func Fuzz.*\(.* \*testing\.F' | sed -E 's/(func Fuzz(.*)\(.*)/\2/' | xargs -I{} sh -c '
      fname="$(dirname $(echo "{}" | cut -d: -f1))"
      func="Fuzz$(echo "{}" | cut -d: -f2)"
      set -x
      compile_native_go_fuzzer istio.io/istio/$fname $func $func
    '
    
    # Now compile fuzzers from tests/fuzz
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzCRDRoundtrip fuzz_crd_roundtrip
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/runtime/align_test.go

    	// Filter files by those for the current architecture/os being tested.
    	fileMap := map[string]bool{}
    	for _, f := range buildableFiles(t, ".") {
    		fileMap[f] = true
    	}
    	var files []*ast.File
    	for fname, f := range pkg.Files {
    		if fileMap[fname] {
    			files = append(files, f)
    		}
    	}
    
    	// Call go/types to analyze the runtime package.
    	var info types.Info
    	info.Types = map[ast.Expr]types.TypeAndValue{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/net/http/pprof/pprof_test.go

    }
    
    // seen returns true if the profile includes samples whose stacks include
    // the specified function name (fname).
    func seen(p *profile.Profile, fname string) bool {
    	locIDs := map[*profile.Location]bool{}
    	for _, loc := range p.Location {
    		for _, l := range loc.Line {
    			if strings.Contains(l.Function.Name, fname) {
    				locIDs[loc] = true
    				break
    			}
    		}
    	}
    	for _, sample := range p.Sample {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top