Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 353 for Strip (0.04 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/kotlin/modules/string-utils/src/main/java/org/sample/stringutils/Strings.java

    package org.sample.stringutils;
    
    import org.apache.commons.lang3.StringUtils;
    
    public class Strings {
       public static String concat(Object left, Object right) {
         return strip(left) + " " + strip(right);
       }
    
       private static String strip(Object val) {
         return StringUtils.strip(String.valueOf(val));
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple.mlir

    // CHECK-NEXT:       name: "input",
    // STRIP:            buffer: 1,
    // STRIP-NEXT:       name: "input",
    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       shape: [ 3, 2 ],
    // CHECK-NEXT:       type: INT32,
    // CHECK-NEXT:       buffer: 2,
    // CHECK-NEXT:       name: "Const",
    // STRIP:            buffer: 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple_with_unconnected_control_nodes.mlir

    // CHECK-NEXT:       name: "input",
    // STRIP:            buffer: 1,
    // STRIP-NEXT:       name: "input",
    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       shape: [ 3, 2 ],
    // CHECK-NEXT:       type: INT32,
    // CHECK-NEXT:       buffer: 2,
    // CHECK-NEXT:       name: "Const",
    // STRIP:            buffer: 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 13:32:53 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple_with_connected_control_nodes.mlir

    // CHECK-NEXT:       name: "input",
    // STRIP:            buffer: 1,
    // STRIP-NEXT:       name: "input",
    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       shape: [ 3, 2 ],
    // CHECK-NEXT:       type: INT32,
    // CHECK-NEXT:       buffer: 2,
    // CHECK-NEXT:       name: "Const",
    // STRIP:            buffer: 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 13:32:53 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

                }
    
                task stripSymbolsDebug(type: StripSymbols) { strip ->
                    project.application.binaries.get { !it.optimized }.configure {
                        def linkDebug = linkTask.get()
                        strip.toolChain = linkDebug.toolChain
                        strip.targetPlatform = linkDebug.targetPlatform
                        strip.binaryFile.set linkDebug.linkedFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/groovy/my-utils/string-utils/src/main/java/org/sample/stringutils/Strings.java

    package org.sample.stringutils;
    
    import org.apache.commons.lang3.StringUtils;
    
    public class Strings {
       public static String concat(Object left, Object right) {
         return strip(left) + " " + strip(right);
       }
    
       private static String strip(Object val) {
         return StringUtils.strip(String.valueOf(val));
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/groovy/modules/string-utils/src/main/java/org/sample/stringutils/Strings.java

    package org.sample.stringutils;
    
    import org.apache.commons.lang3.StringUtils;
    
    public class Strings {
       public static String concat(Object left, Object right) {
         return strip(left) + " " + strip(right);
       }
    
       private static String strip(Object val) {
         return StringUtils.strip(String.valueOf(val));
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/my-utils/string-utils/src/main/java/org/sample/stringutils/Strings.java

    package org.sample.stringutils;
    
    import org.apache.commons.lang3.StringUtils;
    
    public class Strings {
       public static String concat(Object left, Object right) {
         return strip(left) + " " + strip(right);
       }
    
       private static String strip(Object val) {
         return StringUtils.strip(String.valueOf(val));
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top