Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 171 for Strip (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_stack_test.go

    	// blank lines that can be removed to keep the line unchanged.
    	//
    	//
    	//
    	//
    	//
    	//
    	HandleErrorWithContext(ctx, errors.New("fake error"), "test")
    
    	klog.Flush()
    	// Strip varying header. Code location should be constant and something
    	// that needs to be tested.
    	output := buffer.String()
    	output = regexp.MustCompile(`^.* ([^[:space:]]*.go:[[:digit:]]*)\] `).ReplaceAllString(output, `xxx $1] `)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. build/pause/Makefile

    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    			$(TRIPLE)-gcc $(CFLAGS) -o $@ $^ && \
    			$(TRIPLE)-strip $(foreach binary, $@, ${binary}${EXTENSION})"
    
    bin/wincat-windows-${ARCH}: windows/wincat/wincat.go
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		--tmpfs /.cache \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        }
    
        private void consumeTaskOutput(Matcher matcher) {
            String taskName = matcher.group(1);
            String taskOutcome = matcher.group(2);
            String taskOutput = StringUtils.strip(matcher.group(3), "\n");
    
            GroupedTaskOutputFixture task = tasks.get(taskName);
            if (task == null) {
                task = new GroupedTaskOutputFixture(taskName);
                tasks.put(taskName, task);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/strip-bom": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
          "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
          "dev": true,
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/strip-indent": {
          "version": "3.0.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  5. hack/boilerplate/boilerplate.py

        # company holder names can be anything
        regexs["date"] = re.compile(get_dates())
        # strip the following build constraints/tags:
        # //go:build
        # // +build \n\n
        regexs["go_build_constraints"] = re.compile(
            r"^(//(go:build| \+build).*\n)+\n", re.MULTILINE
        )
        # strip #!.* from scripts
        regexs["shebang"] = re.compile(r"^(#!.*\n)\n*", re.MULTILINE)
        # Search for generated files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/crypto/tls/ech.go

    }
    
    func encodeInnerClientHello(inner *clientHelloMsg, maxNameLength int) ([]byte, error) {
    	h, err := inner.marshalMsg(true)
    	if err != nil {
    		return nil, err
    	}
    	h = h[4:] // strip four byte prefix
    
    	var paddingLen int
    	if inner.serverName != "" {
    		paddingLen = max(0, maxNameLength-len(inner.serverName))
    	} else {
    		paddingLen = maxNameLength + 9
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top