Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 372 for Strip (0.37 sec)

  1. src/cmd/asm/internal/lex/slice.go

    	//	#define A #define B(x) x
    	// and
    	//	#define A #define B (x) x
    	// The first definition of B has an argument, the second doesn't. Because we let
    	// text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it.
    	return s.pos
    }
    
    func (s *Slice) Close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/IdGenerator.java

            // replace invalid characters
            result = ID_PATTERN.matcher(result).replaceAll("");
    
            // normalize separators
            result = SEPARATOR_PATTERN.matcher(result).replaceAll(PART_SEPARATOR);
    
            // strip separator from the end
            if (result.endsWith(PART_SEPARATOR)) {
                result = result.substring(0, result.length() - 1);
            }
    
            // string separator from the start
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. kotlin-js-store/yarn.lock

      dependencies:
        emoji-regex "^8.0.0"
        is-fullwidth-code-point "^3.0.0"
        strip-ansi "^6.0.1"
    
    strip-ansi@^6.0.0, strip-ansi@^6.0.1:
      version "6.0.1"
      resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponent.java

     * This includes their resolvable configurations and dependency scopes, as well as any associated tasks.
     *
     * TODO: We should strip almost all logic from this class. It should be a simple container for features and should provide
     * a means of querying all variants of all features.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/runtime/unsafepoint_test.go

    	// which of its instructions are unsafe preemption points.
    	f := runtime.FuncForPC(reflect.ValueOf(setGlobalPointer).Pointer())
    
    	// Disassemble the test function.
    	// Note that normally "go test runtime" would strip symbols
    	// and prevent this step from working. So there's a hack in
    	// cmd/go/internal/test that exempts runtime tests from
    	// symbol stripping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 20:24:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top