Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 341 for practice (0.42 sec)

  1. pkg/test/framework/components/cluster/kube/cluster.go

    	return c.IsConfig() && c.vmSupport
    }
    
    // OverrideTopology allows customizing the relationship between this and other clusters
    // for a single suite. This practice is discouraged, and separate test jobs should be created
    // on a per-topology bassis.
    // TODO remove this when centralistiod test is isolated as it's own job
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.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://travis-ci.org/[Travis CI] for a typical Gradle project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/xla_validate_inputs.cc

                entry_func, symtab, /*predicate*/ calls_entry_functions, calls)
                .failed()) {
          return failure();
        }
        if (!calls.empty()) {
          // This is not expected to happen in practice. We can add a pass after
          // GuaranteeAllFuncsOneUsePass to remove "tf.entry_function" or
          // "tf_saved_model.initializer_type" attribute from the callee of the
          // inner calls if the problem ever arises.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationType.java

    import java.util.Map;
    
    /**
     * The transformation of the user's build cache config, to the effective configuration.
     *
     * This operation should occur some time after the configuration phase.
     * In practice, it will fire as part of bootstrapping the execution of the first task to execute.
     *
     * This operation should always be executed, regardless of whether caching is enabled/disabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/clone_constants_for_better_clustering.h

    //    another containing {Const/copy_1, GPU_0_X, GPU_0_Y}.
    //
    // We only clone small host constants now to avoid increasing memory consumption
    // too much.  Moreover, in practice the constants we have to duplicate are
    // things like the `perm` input to `Transpose` and the `size` input to `Slice`
    // which tend to be small anyway.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 23:57:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.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://jenkins.io/[Jenkins] for a typical Gradle project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/test/framework/features/README.md

    ```go
      func TestExample(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    Assuming all merges to main are built on CI (a best practice!), you can expect this first local build of the day to enjoy a larger-than-typical benefit with Gradle’s _remote cache_.
    CI already built this commit -- why should you re-do that work?
    
    === Switching branches
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

         */
        Optional<String> getValueDescription();
    
        /**
         * Gets the underlying type of this node.
         * <p>
         * Calling this method may create or transition the node.
         * <p>
         * In practice, this describes the type that you would get if you asked for this node as Object, read only.
         * This is used in the model report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/xla_rewrite.cc

          if (has_resources) in_order = false;
        } else {
          resource_args.push_back(arg);
          has_resources = true;
        }
      }
    
      if (!in_order) {
        // Functions do not get reused in practice, so skip the check for if the
        // callee has been updated.
        StringAttr callee_sym = cluster_func_op.getFuncAttr().getAttr();
        MoveResourceArgsToEnd(symtab.lookup<func::FuncOp>(callee_sym));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top