Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 413 for Strip (0.1 sec)

  1. src/cmd/link/internal/ld/elf_test.go

    	testenv.MustHaveCGO(t)
    
    	// Make sure that the resulting binary can be put through strip.
    	// Try both "strip" and "llvm-strip"; in each case ask out CC
    	// command where to find the tool with "-print-prog-name" (meaning
    	// that if CC is gcc, we typically won't be able to find llvm-strip).
    	//
    	// Interestingly, binutils version of strip will (unfortunately)
    	// print error messages if there is a problem but will not return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/debug/elf/testdata/multiple-code-sections.c

    // gcc -g multiple-code-sections.c -Wl,-zmax-page-size=1 -fno-asynchronous-unwind-tables -o go-relocation-test-gcc930-ranges-no-rela-x86-64
    // Strip with:
    // strip --only-keep-debug \
    //       --remove-section=.eh_frame \
    //       --remove-section=.eh_frame_hdr \
    //       --remove-section=.shstrtab \
    //       --remove-section=.strtab \
    //       --remove-section=.symtab \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cpp-exe/groovy/build.gradle

        }
        tasks { t ->
            $.components.main.binaries.each { binary ->
                def stripTask = binary.tasks.taskName("strip")
                t.create(stripTask) {
                    dependsOn binary.tasks.link
                    doFirst {
                        if (binary.toolChain in Gcc) {
                            ["strip", binary.tasks.link.linkedFile].execute().waitForOrKill(1000)
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 931 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

            // any of the ansi sequences.
            if (Boolean.getBoolean("jansi.passthrough")) {
                return stream;
            }
    
            // If the jansi.strip property is set, then we just strip the
            // the ansi escapes.
            if (Boolean.getBoolean("jansi.strip")) {
                return new AnsiOutputStream(stream);
            }
    
            if (OperatingSystem.current().isWindows() && !IS_MINGW_XTERM) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

            if (Constants.DEFAULT_FIELD.equals(field)) {
                final String text = wildcardQuery.getTerm().text();
                context.addFieldLog(field, text);
                context.addHighlightedQuery(StringUtils.strip(text, "*"));
                return buildDefaultQueryBuilder(fessConfig, context,
                        (f, b) -> QueryBuilders.wildcardQuery(f, toLowercaseWildcard(text)).boost(b * boost));
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. releasenotes/notes/25350.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 25350
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 02 18:25:34 UTC 2021
    - 256 bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

            succeeds("compileJava")
    
            then:
            pidFile().exists()
            def pid1 = pidFile().text.strip() as long
            kill(pid1)
    
            when:
            args "--rerun-tasks"
            succeeds("compileJava")
    
            then:
            pidFile().exists()
            def pid2 = pidFile().text.strip() as long
            pid2 != pid1
    
            and:
            outputContainsKilledWorkerWarning()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version_gc_sections.txt

    # This test checks that external linking with --gc-sections does not strip version information.
    
    [short] skip
    [!cgo] skip
    [GOOS:aix] skip  # no --gc-sections
    [GOOS:darwin] skip  # no --gc-sections
    
    go build -ldflags='-linkmode=external -extldflags=-Wl,--gc-sections'
    go version hello$GOEXE
    ! stdout 'not a Go executable'
    ! stderr 'not a Go executable'
    
    -- go.mod --
    module hello
    -- hello.go --
    package main
    
    /*
    */
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:17:57 UTC 2023
    - 460 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/strip_tf_attributes.cc

      ModuleOp module = getOperation();
    
      // strip module itself
      auto stripAttrs = llvm::to_vector<4>(llvm::make_filter_range(
          module->getAttrs(),
          [](NamedAttribute namedAttr) { return ShouldStripAttr(namedAttr); }));
      for (auto namedAttr : stripAttrs) {
        module->removeAttr(namedAttr.getName());
      }
    
      // strip functions in module
      module.walk([&](func::FuncOp func) { StripFunction(func); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. cluster/get-kube-binaries.sh

      if [[ -f "${KUBE_ROOT}/test/${TESTS_PORTABLE_TAR}" ]]; then
        echo "Extracting ${TESTS_PORTABLE_TAR} into ${KUBE_ROOT}"
        # Strip leading "kubernetes/"
        tar -xzf "${KUBE_ROOT}/test/${TESTS_PORTABLE_TAR}" --strip-components 1 -C "${KUBE_ROOT}"
    
        # Next, download platform-specific test tarballs for all relevant platforms
        TEST_PLATFORM_TUPLES=(
          "${CLIENT_PLATFORM}/${CLIENT_ARCH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top