Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 315 for approach (0.31 sec)

  1. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      BasicComponentConfigurator.
    
    * Other
    
      We may need to define a new lifecycle/phase to contextualize a mojo right
      before it's used, and reset it's state afterward. Up to now, the approach
      of most plexus components has been to avoid instance state like the plague.
      With the current parameter passing model of mojos, this will not be possible,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     * variety of sequences of the {@link Iterator#next}, {@link Iterator#hasNext} and {@link
     * Iterator#remove} operations. This utility takes the brute-force approach of trying <i>all</i>
     * possible sequences of these operations, up to a given number of steps. So, if the caller
     * specifies to use <i>n</i> steps, a total of <i>3^n</i> tests are actually performed.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                  ?, ? extends OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>>>
              parentBuilder) {
        List<TestSuite> derived = super.createDerivedSuites(parentBuilder);
        // TODO(cpovirk): consider using this approach (derived suites instead of extension) in
        // ListTestSuiteBuilder, etc.?
        derived.add(
            MapTestSuiteBuilder.using(new MapGenerator<K, V>(parentBuilder.getSubjectGenerator()))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/apigen/apigen.go

    // TODO: based on lessons from MCP, we want to send 'chunked' responses, like apiserver does.
    // A first attempt added a 'sync' record at the end. Based on feedback and common use, a
    // different approach can be used - for large responses, we can mark the last one as 'hasMore'
    // by adding a field to the envelope.
    
    // Generate implements the generate method for high level APIs, like Istio config types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/doc.go

    // two different tags may represent the same language.
    //
    // By default, only legacy and deprecated tags are converted into their
    // canonical equivalent. All other information is preserved. This approach makes
    // the confidence scores more accurate and allows matchers to distinguish
    // between variants that are otherwise lost.
    //
    // As a consequence, two tags that should be treated as identical according to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/lockedfile/internal/filelock/filelock_test.go

    	lock(t, f)
    
    	other := mustOpen(t, f.Name())
    	defer other.Close()
    
    	// Some kinds of file locks are dropped when a duplicated or forked file
    	// descriptor is unlocked. Double-check that the approach used by os/exec does
    	// not accidentally drop locks.
    	cmd := testenv.Command(t, os.Args[0], "-test.run=^$")
    	if err := cmd.Run(); err != nil {
    		t.Fatalf("exec failed: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/debug/dwarf/open.go

    	return d.parseTypes(name, types)
    }
    
    // AddSection adds another DWARF section by name. The name should be a
    // DWARF section name such as ".debug_addr", ".debug_str_offsets", and
    // so forth. This approach is used for new DWARF sections added in
    // DWARF 5 and later.
    func (d *Data) AddSection(name string, contents []byte) error {
    	var err error
    	switch name {
    	case ".debug_addr":
    		d.addr = contents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sub:declaring_dependency_with_dynamic_version]]
    == Declaring a dynamic version
    
    Projects might adopt a more aggressive approach for consuming dependencies to modules.
    For example you might want to always integrate the latest version of a dependency to consume cutting edge features at any given time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                  ?, ? extends OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>>>
              parentBuilder) {
        List<TestSuite> derived = super.createDerivedSuites(parentBuilder);
        // TODO(cpovirk): consider using this approach (derived suites instead of extension) in
        // ListTestSuiteBuilder, etc.?
        derived.add(
            MapTestSuiteBuilder.using(new MapGenerator<K, V>(parentBuilder.getSubjectGenerator()))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

                    // There are other options for solving this that may be more performant. However a class is inspected this way once and the result reused, so this approach is probably fine
                    urlConnection.setUseCaches(false);
                }
                try (InputStream inputStream = urlConnection.getInputStream()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top