Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 341 for practice (0.3 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java

                    VersionRange.createFromVersion("1.0"),
                    "type",
                    null,
                    "system",
                    "compile");
    
            // this one should never happen in practice...
            Artifact artifact5 = factory.createDependencyArtifact(
                    "test-grp", "test-artifact-5", VersionRange.createFromVersion("1.0"), "type", null, "system", "system");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    Building Gradle projects doesn't stop with the developer's machine.
    https://en.wikipedia.org/wiki/Continuous_integration[Continuous Integration] (CI) has been a long-established practice for running a build for every single change committed to version control to tighten the feedback loop.
    
    In this guide, we'll discuss how to configure link:https://www.jetbrains.com/teamcity/[TeamCity] for a typical Gradle project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. .github/pull_request_template.md

           where you replace `MNG-XXX` and `SUMMARY` with the appropriate JIRA issue.
     - [ ] Also format the first line of the commit message like `[MNG-XXX] SUMMARY`.
           Best practice is to use the JIRA issue title in both the pull request title and in the first line of the commit message.
     - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. samples/external/README.md

    succeed with `git clone https://github.com/fortio/fortio.git`.
    
    Running `kubectl create -f pypi.yaml` allows pods to update Python libraries using `pip`.
    
    It is not a best practice to enable pods to update libraries dynamically.
    We are providing these samples
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaHomeBasedJavaCompilerFactory.java

        // it has a huge impact on performance. Previously there was a single, JdkTools.current()
        // instance, but we can have different "compiler plugins" classpath. For this reason we use
        // a map, but in practice it's likely there's only one instance in this map.
        private final static transient Map<List<File>, JdkTools> JDK_TOOLS = new ConcurrentHashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/goline_order.txt

    go list
    cmp go.mod go.mod.orig
    
    # Adding the import produces the error.
    # Maybe this should auto-switch, but it requires more plumbing to get this error through,
    # and it's a misconfigured system that should not arise in practice, so not switching is fine.
    ! go list -deps -tags usem1
    cmp go.mod go.mod.orig
    stderr '^go: module ./m1 requires go >= 1.21.2 \(running go 1.21.1\)$'
    
    # go get go@1.21.2 fixes the error.
    cp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.cc

        auto sym = mlir::dyn_cast<SymbolRefAttr>(attr.getValue());
        if (!sym) continue;
        auto callee = symtab.lookup<func::FuncOp>(sym.getRootReference());
        if (!callee) {
          // This is not expected to happen in practice.
          return op->emitError()
                 << "Cannot find function " << sym.getRootReference();
        }
        callees.push_back(callee);
      }
      return success();
    }
    
    bool HasSingleBlock(func::FuncOp func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/go/doc/testdata/examples/issue43658.go

    func ExampleProfile_simple() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    	// consistency between test runs. In practice, results will not differ greatly
    	// between runs with different PRNG seeds.
    	src := rand.NewSource(1)
    
    	// Create dumbell graph:
    	//
    	//  0       4
    	//  |\     /|
    	//  | 2 - 3 |
    	//  |/     \|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.java

    import java.util.Map;
    
    import org.apache.maven.api.toolchain.ToolchainModel;
    import org.apache.maven.execution.MavenSession;
    import org.slf4j.Logger;
    
    /**
     * TODO: refactor this, component extending component is bad practice.
     *
     */
    @Named
    @Singleton
    public class DefaultToolchainManagerPrivate extends DefaultToolchainManager implements ToolchainManagerPrivate {
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // generation. The parser should wait to find a GoStatus
    // event before advancing into the next generation at all.
    // It turns out this situation is pretty rare; the GoStatus
    // event almost always shows up first in practice. But it
    // can and did happen.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top