Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for trunk (0.08 sec)

  1. src/cmd/go/internal/modfetch/codehost/vcs.go

    		},
    	},
    
    	"svn": {
    		vcs:  "svn",
    		init: nil, // no local checkout
    		tags: func(remote string) []string {
    			return []string{"svn", "list", "--", strings.TrimSuffix(remote, "/trunk") + "/tags"}
    		},
    		tagRE: re(`(?m)^(.*?)/?$`),
    		statLocal: func(rev, remote string) []string {
    			suffix := "@" + rev
    			if rev == "latest" {
    				suffix = ""
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/html/template/doc.go

    instead of the
    
    	Hello, <b>World<b>!
    
    that would have been produced if {{.}} was a regular string.
    
    # Security Model
    
    https://rawgit.com/mikesamuel/sanitized-jquery-templates/trunk/safetemplate.html#problem_definition defines "safe" as used by this package.
    
    This package assumes that template authors are trusted, that Execute's data
    parameter is not, and seeks to preserve the properties below in the face
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // A Binutils implements plugin.ObjTool by invoking the GNU binutils.
    type Binutils struct {
    	mu  sync.Mutex
    	rep *binrep
    }
    
    var (
    	objdumpLLVMVerRE = regexp.MustCompile(`LLVM version (?:(\d*)\.(\d*)\.(\d*)|.*(trunk).*)`)
    
    	// Defined for testing
    	elfOpen = elf.Open
    )
    
    // binrep is an immutable representation for Binutils.  It is atomically
    // replaced on every mutation to provide thread-safe access.
    type binrep struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - PMD has been updated to https://pmd.github.io/latest/pmd_release_notes.html#28-july-2019---6170[PMD 6.17.0].
    - JaCoCo has been updated to http://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.5]. Contributed by link:https://github.com/Godin[Evgeny Mandrikov]
    
    ==== Changes to build and task names in composite builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // }
        // CHECK: call @main.2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  6. src/net/http/cookiejar/jar_test.go

    		},
    	}.run(t, jar)
    }
    
    //
    // Tests derived from Chromium's cookie_store_unittest.h.
    //
    
    // See http://src.chromium.org/viewvc/chrome/trunk/src/net/cookies/cookie_store_unittest.h?revision=159685&content-type=text/plain
    // Some of the original tests are in a bad condition (e.g.
    // DomainWithTrailingDotTest) or are not RFC 6265 conforming (e.g.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Updates to default tool integration versions
    
    - Checkstyle has been updated to https://checkstyle.sourceforge.io/releasenotes.html#Release_8.45.1[Checkstyle 8.45.1].
    - JaCoCo has been updated to https://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.8].
    
    ==== Classpath file generated by the `eclipse` plugin has changed
    
    Project dependencies defined in test configurations get the `test=true` classpath attribute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[changes_8.6]]
    == Upgrading from 8.5 and earlier
    
    === Potential breaking changes
    
    ==== Upgrade to JaCoCo 0.8.11
    
    JaCoCo has been updated to https://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.11].
    
    ==== `DependencyAdder` renamed to `DependencyCollector`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    This may impact Kotlin consumers where the return types of APIs are no longer nullable.
    
    ==== Updates to default tool integration versions
    
    - JaCoCo has been updated to http://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.6].
    - Checkstyle has been updated to https://checkstyle.sourceforge.io/releasenotes.html#Release_8.37[Checkstyle 8.37].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    	DownloadCmd: []string{"up"},
    
    	TagCmd:         []tagCmd{{"tag ls", `(.*)`}},
    	TagSyncCmd:     []string{"up tag:{tag}"},
    	TagSyncDefault: []string{"up trunk"},
    
    	Scheme:     []string{"https", "http"},
    	RemoteRepo: fossilRemoteRepo,
    	Status:     fossilStatus,
    }
    
    func fossilRemoteRepo(vcsFossil *Cmd, rootDir string) (remoteRepo string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top