Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 413 for Strip (0.81 sec)

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

    	var locs map[uint64]*Location
    	if b, locs, err = parseCPUSamples(b, parse, false, p); err != nil {
    		return nil, err
    	}
    
    	if err = parseJavaLocations(b, locs, p); err != nil {
    		return nil, err
    	}
    
    	// Strip out addresses for better merge.
    	if err = p.Aggregate(true, true, true, true, false, false); err != nil {
    		return nil, err
    	}
    
    	return p, nil
    }
    
    // parseJavaProfile returns a new profile from heapz or contentionz
    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. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        llvm::cl::location(lower_tensor_list_ops), llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<bool, true> strip_debug_info_flag(
        "strip-debug-info", llvm::cl::desc("Strip debug info during export"),
        llvm::cl::location(strip_debug_info), llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<bool, true> use_buffer_offset_flag(
        "use-buffer-offset",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/runlit.site.cfg.py

    ]
    config.mlir_tf_tools_dirs = [
        os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'], s)
        for s in mlir_tf_tools_dirs
    ]
    test_dir = os.environ['TEST_TARGET']
    test_dir = test_dir.strip('/').rsplit(':', 1)[0]
    config.mlir_test_dir = os.path.join(real_test_srcdir,
                                        os.environ['TEST_WORKSPACE'], test_dir)
    
    if platform.system() == 'Windows':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/StripSymbols.java

         *
         * @since 4.7
         */
        @Nested
        public Property<NativePlatform> getTargetPlatform() {
            return targetPlatform;
        }
    
        // TODO: Need to track version/implementation of symbol strip tool.
    
        @TaskAction
        protected void stripSymbols() {
            BuildOperationLogger operationLogger = getServices().get(BuildOperationLoggerFactory.class).newOperationLogger(getName(), getTemporaryDir());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_darwin_arm64.c

    	CFRelease(url_ref);
    	if (!res) {
    		fprintf(stderr, "runtime/cgo: cannot get URL string\n");
    		return;
    	}
    
    	// url is of the form "file:///path/to/Info.plist".
    	// strip it down to the working directory "/path/to".
    	int url_len = strlen(buf);
    	if (url_len < sizeof("file://")+sizeof("/Info.plist")) {
    		fprintf(stderr, "runtime/cgo: bad URL: %s\n", buf);
    		return;
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/grpc.go

    		grpc.WithAuthority(cfg.hostHeader),
    		grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
    			return newDialer(cfg).DialContext(ctx, "tcp", addr)
    		}),
    		security,
    	}
    
    	// Strip off the scheme from the address (for regular gRPC).
    	address := cfg.Request.Url[len(cfg.scheme+"://"):]
    
    	// Connect to the GRPC server.
    	ctx, cancel := context.WithTimeout(context.Background(), common.ConnectionTimeout)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 14 19:45:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. cmd/gotemplate/gotemplate.go

    // gotemplate also implements:
    // - include <filename>: returns the content of that file as string
    // - indent <number of spaces> <string>: replace each newline with "newline + spaces", indent the newline at the end
    // - trim <string>: strip leading and trailing whitespace
    
    func main() {
    	kvs := make(map[string]string)
    
    	for _, keyValue := range os.Args[1:] {
    		index := strings.Index(keyValue, "=")
    		if index <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/format.go

    		check.markImports(imp)
    	}
    }
    
    // stripAnnotations removes internal (type) annotations from s.
    func stripAnnotations(s string) string {
    	var buf strings.Builder
    	for _, r := range s {
    		// strip #'s and subscript digits
    		if r < '₀' || '₀'+10 <= r { // '₀' == U+2080
    			buf.WriteRune(r)
    		}
    	}
    	if buf.Len() < len(s) {
    		return buf.String()
    	}
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/README.md

    To resolve this, a `<group>.<version>.<kind>_after_roundtrip.[json|yaml|pb]` file containing the 
    expected data after roundtripping can be placed beside the serialized data file from a previous release.
    
    These `after_roundtrip` files are generated by running the failing round-trip tests with `UPDATE_COMPATIBILITY_FIXTURE_DATA=true` set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/ar.go

    // unresolved (SXREF) import symbols. We do not, however, want to
    // trigger the inclusion of an object from a host archive if the
    // reference is going to be eventually forwarded to the corresponding
    // SDYNIMPORT symbol, so here we strip out such refs from the undefs
    // list.
    func pruneUndefsForWindows(ldr *loader.Loader, undefs, froms []loader.Sym) ([]loader.Sym, []loader.Sym) {
    	var newundefs []loader.Sym
    	var newfroms []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top