Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for Strip (0.19 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. ci/official/utilities/extract_resultstore_links.py

        if not elem.text or not elem.text.strip():
          elem.text = indent_str + '  '
        if not elem.tail or not elem.tail.strip():
          elem.tail = indent_str
        for elem in elem:
          indent_xml(elem, level + 1)
        if not elem.tail or not elem.tail.strip():
          elem.tail = indent_str
      else:
        if level and (not elem.tail or not elem.tail.strip()):
          elem.tail = indent_str
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. pkg/scheduler/eventhandlers.go

    	strip := func(conditions []v1.NodeCondition) map[v1.NodeConditionType]v1.ConditionStatus {
    		conditionStatuses := make(map[v1.NodeConditionType]v1.ConditionStatus, len(conditions))
    		for i := range conditions {
    			conditionStatuses[conditions[i].Type] = conditions[i].Status
    		}
    		return conditionStatuses
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/text/tabwriter/tabwriter.go

    // Formatting can be controlled with these flags.
    const (
    	// Ignore html tags and treat entities (starting with '&'
    	// and ending in ';') as single characters (width = 1).
    	FilterHTML uint = 1 << iota
    
    	// Strip Escape characters bracketing escaped text segments
    	// instead of passing them through unchanged with the text.
    	StripEscape
    
    	// Force right-alignment of cell content.
    	// Default is left-alignment.
    	AlignRight
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting.cc

    #include "absl/container/btree_map.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "absl/strings/strip.h"
    #include "tensorflow/cc/saved_model/constants.h"
    #include "tensorflow/core/framework/versions.pb.h"
    #include "tensorflow/core/graph/regularization/simple_delete.h"
    #include "tensorflow/core/graph/regularization/util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            and:
            runtimeFileProp.get().asFile == linkTask.linkedFile.get().asFile
            linkTaskProp.get() == linkTask
            linkFileTasKProp.get() == linkTask
        }
    
        def "adds tasks to assemble and strip a shared library"() {
            def toolProvider = Stub(PlatformToolProvider)
            toolProvider.getSharedLibraryName(_) >> { String p -> p + ".dll" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    		text := last.Text()
    		if loc := outputPrefix.FindStringSubmatchIndex(text); loc != nil {
    			if loc[2] != -1 {
    				unordered = true
    			}
    			text = text[loc[1]:]
    			// Strip zero or more spaces followed by \n or a single space.
    			text = strings.TrimLeft(text, " ")
    			if len(text) > 0 && text[0] == '\n' {
    				text = text[1:]
    			}
    			return text, unordered, true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

                      </fileset>
                    </copy>
                    <!-- TODO(cpovirk): If we continue stripping these once we use @ElementTypesAreNonnullByDefault, then we should strip @ElementTypesAreNonnullByDefault, too, to reflect that the classes are *not* fully annotated. But hopefully we can stop stripping them, as https://github.com/jspecify/jspecify/issues/184 should make possible. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar.go

    // host name.
    func canonicalHost(host string) (string, error) {
    	var err error
    	if hasPort(host) {
    		host, _, err = net.SplitHostPort(host)
    		if err != nil {
    			return "", err
    		}
    	}
    	// Strip trailing dot from fully qualified domain names.
    	host = strings.TrimSuffix(host, ".")
    	encoded, err := toASCII(host)
    	if err != nil {
    		return "", err
    	}
    	// We know this is ascii, no need to check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            return new Sample(testDirectoryProvider, "native-binaries/${name}/groovy", name)
        }
    
        @ToBeFixedForConfigurationCache
        def "exe"() {
            given:
            // Need to PATH to be set to find the 'strip' executable
            toolChain.initialiseEnvironment()
    
            and:
            sample cppExe
    
            when:
            run "installMain"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top