Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 288 for mentioned (0.16 sec)

  1. 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)
  2. guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

        }
        return dummy;
      }
    
      /**
       * Similar to the above, but keeps a boolean flag rather than checking for the string accumulated
       * so far being empty. As a result, it does not have the above-mentioned bug.
       */
      @Benchmark
      int booleanIfFirst(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          StringBuilder sb = new StringBuilder();
          boolean append = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    start by opening a new issue describing the bug or feature you're intending to
    fix. Even if you think it's relatively minor, it's helpful to know what people
    are working on. And as mentioned above, API changes should be discussed
    thoroughly before moving to code.
    
    Some examples of types of pull requests that are immediately helpful:
    
      - Fixing a bug without changing a public API.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. test/fixedbugs/bug423.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gc used to overflow a counter when a variable was
    // mentioned 256 times, and generate stack corruption.
    
    package main
    
    func main() {
    	F(1)
    }
    
    func F(arg int) {
    	var X interface{}
    	_ = X // used once
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 06:50:10 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/collect/package-info.java

     *   <dd>A new type, which is similar to {@link java.util.Map}, but may contain multiple entries
     *       with the same key. Some behaviors of {@link Multimap} are left unspecified and are provided
     *       only by the subtypes mentioned below.
     *   <dt>{@link ListMultimap}
     *   <dd>An extension of {@link Multimap} which permits duplicate entries, supports random access of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/package-info.java

     *   <dd>A new type, which is similar to {@link java.util.Map}, but may contain multiple entries
     *       with the same key. Some behaviors of {@link Multimap} are left unspecified and are provided
     *       only by the subtypes mentioned below.
     *   <dt>{@link ListMultimap}
     *   <dd>An extension of {@link Multimap} which permits duplicate entries, supports random access of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

                include 'sub'
            """
    
            expect:
            succeeds("sub:pluginTask")
    
            where:
            repoType << [IVY, MAVEN]
        }
    
        def "custom #repoType repo is not mentioned in plugin resolution errors if none is defined"() {
            given:
            publishTestPlugin(repoType)
            buildScript """
              plugins {
                  id "org.example.plugin"
              }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top