Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for mentioned (0.13 sec)

  1. doc/next/9-todo.md

    CL 559799 - a Go 1.22 release note edit CL mentioned a Go 1.22 accepted proposal https://go.dev/issue/62039, a little after Go 1.23 development began
    CL 581555 - an x/tools CL mentioned accepted proposal https://go.dev/issue/62292 for x/tools/go/aalysis; doesn't need a Go 1.23 release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/text/template/helper.go

    // If an error occurs, parsing stops and the returned *Template is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    // For instance, ParseFiles("a/foo", "b/foo") stores "b/foo" as the template
    // named "foo", while "a/foo" is unavailable.
    func ParseFiles(filenames ...string) (*Template, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/runtime/tracestatus.go

    	traceProcIdle
    	traceProcSyscall
    
    	// traceProcSyscallAbandoned is a special case of
    	// traceProcSyscall. It's used in the very specific case
    	// where the first a P is mentioned in a generation is
    	// part of a ProcSteal event. If that's the first time
    	// it's mentioned, then there's no GoSyscallBegin to
    	// connect the P stealing back to at that point. This
    	// special state indicates this to the parser, so it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. doc/README.md

    If your CL addresses an accepted proposal, mention the proposal issue number in
    your release note in the form `/issue/NUMBER`. A link to the issue in the text
    will have this form (see below). If you don't want to mention the issue in the
    text, add it as a comment:
    ```
    <!-- go.dev/issue/12345 -->
    ```
    If an accepted proposal is mentioned in a CL but not in the release notes, it will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/hash/adler32/adler32.go

    	"hash"
    	"internal/byteorder"
    )
    
    const (
    	// mod is the largest prime that is less than 65536.
    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    	// It is mentioned in RFC 1950 (search for "5552").
    	nmax = 5552
    )
    
    // The size of an Adler-32 checksum in bytes.
    const Size = 4
    
    // digest represents the partial evaluation of a checksum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/html/template/template.go

    // If an error occurs, parsing stops and the returned [*Template] is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    // For instance, ParseFiles("a/foo", "b/foo") stores "b/foo" as the template
    // named "foo", while "a/foo" is unavailable.
    func ParseFiles(filenames ...string) (*Template, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    	})
    
    	// Synthesize file.
    	return &ast.File{
    		Name:     ast.NewIdent("main"),
    		Decls:    decls,
    		Comments: comments,
    	}
    }
    
    // findDeclsAndUnresolved returns all the top-level declarations mentioned in
    // the body, and a set of unresolved symbols (those that appear in the body but
    // have no declaration in the program).
    //
    // topDecls maps objects to the top-level declaration declaring them (not
    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. samples/open-telemetry/tracing/README.md

    You may also choose any existing tracing system if you have, and you should change the exporter settings in the configmap mentioned above.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.IsEmbeddedExecutor)
        // this test only works in embedded mode because of the use of validation test fixtures
        def "work validation warnings are mentioned in summary"() {
            buildFile << """
                import org.gradle.integtests.fixtures.validation.ValidationProblem
    
                class InvalidTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. staging/README.md

       to add the list of other staging repos that this new repo can import.
    
    4. Add all mandatory template files to the staging repo as mentioned in
       https://github.com/kubernetes/kubernetes-template-project.
    
    5. Make sure that the `.github/PULL_REQUEST_TEMPLATE.md` and `CONTRIBUTING.md`
       files mention that PRs are not directly accepted to the repo.
    
    6. Ensure that `docs.go` file is added. Refer to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top