Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 413 for Strip (0.4 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. src/runtime/debug/mod_test.go

    // license that can be found in the LICENSE file.
    
    package debug_test
    
    import (
    	"reflect"
    	"runtime/debug"
    	"strings"
    	"testing"
    )
    
    // strip removes two leading tabs after each newline of s.
    func strip(s string) string {
    	replaced := strings.ReplaceAll(s, "\n\t\t", "\n")
    	if len(replaced) > 0 && replaced[0] == '\n' {
    		replaced = replaced[1:]
    	}
    	return replaced
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. arm_compiler.BUILD

    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
        name = "objdump",
        srcs = glob(["bin/*-objdump"]),
    )
    
    filegroup(
        name = "strip",
        srcs = glob(["bin/*-strip"]),
    )
    
    filegroup(
        name = "as",
        srcs = glob(["bin/*-as"]),
    )
    
    filegroup(
        name = "compiler_pieces",
        srcs = glob([
            "arm-rpi-linux-gnueabihf/**",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 12 11:17:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top