Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 369 for practice (0.56 sec)

  1. pkg/kubelet/checkpointmanager/README.md

    ## DISCLAIMER
    - Sig-Node community has reached a general consensus, as a best practice, to
    avoid introducing any new checkpointing support. We reached this understanding
    after struggling with some hard-to-debug issues in the production environments
    caused by the checkpointing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    // Tests syscall P stealing.
    //
    // Specifically, it tests a scenerio wherein, without a
    // P sequence number of GoSyscallBegin, the syscall that
    // a ProcSteal applies to is ambiguous. This only happens in
    // practice when the events aren't already properly ordered
    // by timestamp, since the ProcSteal won't be seen until after
    // the correct GoSyscallBegin appears on the frontier.
    
    package main
    
    import (
    	"internal/trace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top