Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 413 for Strip (0.04 sec)

  1. src/cmd/go/testdata/vcstest/hg/custom-hg-hello.txt

    handle hg
    hg init
    
    hg add hello.go
    hg commit --user 'Russ Cox <******@****.***>' --date '2017-10-10T19:39:36-04:00' --message 'hello'
    
    hg log -r ':' --template '{node|short} {desc|strip|firstline}\n'
    cmp stdout .hg-log
    
    -- .hg-log --
    a8c8e7a40da9 hello
    -- hello.go --
    package main // import "vcs-test.golang.org/go/custom-hg-hello"
    
    func main() {
    	println("hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 366 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/strip_noinline.mlir

    // RUN: tf-opt %s -tf-strip-noinline-attribute | FileCheck %s
    
    // CHECK-LABEL: func @strip_simple(
    // CHECK-NOT: tf._noinline
    func.func @strip_simple() -> tensor<2xi32> attributes {tf._noinline = true} {
      // CHECK-NEXT: %[[CST:.*]] = "tf.Const"
      %cst = "tf.Const"() { value = dense<2> : tensor<2xi32> } : () -> tensor<2xi32>
      func.return %cst : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 364 bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

            handler.waitForAllPendingCalls()
    
            then:
            cancelBuild()
    
            then:
            daemons.daemon.becomesIdle()
    
            and:
            pidFile().exists()
            def pid1 = pidFile().text.strip() as long
            new ProcessFixture(pid1).waitForFinish()
    
            when:
            handler = blockingHttpServer.expectAndBlock("/block")
            startBuild("compileJava")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/KeyringStripper.java

    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    import java.util.Optional;
    import java.util.stream.Collectors;
    import java.util.stream.StreamSupport;
    
    /**
     * A utility class to strip unnecessary information from a keyring
     */
    public class KeyringStripper {
        private static final Constructor<PGPPublicKey> KEY_CONSTRUCTOR;
    
        private static final Constructor<PGPPublicKey> SUBKEY_CONSTRUCTOR;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. .github/workflows/reviewdog.yml

            env:
              REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
            run: |
              go install mvdan.cc/gofumpt@v0.2.0
              gofumpt -e -d . | \
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 664 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/testing.go

    	var s scanner
    	s.init(src, func(_, _ uint, text string) {
    		if text[0] != '/' {
    			return // not a comment, ignore
    		}
    		if text[1] == '*' {
    			text = text[:len(text)-2] // strip trailing */
    		}
    		text = text[2:] // strip leading // or /*
    		if rx.MatchString(text) {
    			pos := MakePos(base, prev.line, prev.col)
    			err := Error{pos, text}
    			if res == nil {
    				res = make(map[uint][]Error)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    rpm2cpio "glibc-2.17-317.el7.src.rpm" |cpio -idmv
    tar -xvzf "glibc-2.17-c758a686.tar.gz" --strip 1
    tar -xvzf "glibc-2.17-c758a686-releng.tar.gz" --strip 1
    sed -i '/patch0060/d' glibc.spec
    /rpm-patch.sh "glibc.spec"
    rm -f "glibc-2.17-317.el7.src.rpm" "glibc-2.17-c758a686.tar.gz" "glibc-2.17-c758a686-releng.tar.gz"
    patch -p1 < /gcc9-fixups.patch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/str/path.go

    // filepath.Separator (as returned by filepath.Clean).
    func HasFilePathPrefix(s, prefix string) bool {
    	sv := filepath.VolumeName(s)
    	pv := filepath.VolumeName(prefix)
    
    	// Strip the volume from both paths before canonicalizing sv and pv:
    	// it's unlikely that strings.ToUpper will change the length of the string,
    	// but doesn't seem impossible.
    	s = s[len(sv):]
    	prefix = prefix[len(pv):]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/hg/hello.txt

    handle hg
    hg init
    
    hg add hello.go
    hg commit --user 'bwk' --date '2017-09-21T21:14:14-04:00' --message 'hello world'
    
    hg log -r ':' --template '{node|short} {desc|strip|firstline}\n'
    cmp stdout .hg-log
    
    -- .hg-log --
    e483a7d9f8c9 hello world
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 312 bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

            int strip = 0;
    
            do {
                if ( ri == rlast ) {
                    result[ rlast ] = path.substring(b);
                    result[ rlast ] = path.substring(b);
                    return strip;
                }
                if ( i == len || path.charAt(i) == '\\' ) {
                    result[ ri++ ] = path.substring(b, i);
                    strip++;
                    b = i + 1;
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
Back to top