Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 103 for enhanced (0.18 sec)

  1. src/database/sql/driver/driver.go

    	Close() error
    
    	// Begin starts and returns a new transaction.
    	//
    	// Deprecated: Drivers should implement ConnBeginTx instead (or additionally).
    	Begin() (Tx, error)
    }
    
    // ConnPrepareContext enhances the [Conn] interface with context.
    type ConnPrepareContext interface {
    	// PrepareContext returns a prepared statement, bound to this connection.
    	// context is for the preparation of the statement,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/analyze_variables.cc

        // If any of the operands is a resource type, then we break
        // and mark the module as not valid for TFLite legalization.
        // Note: this might disable native variables in more than needed cases.
        // TODO(b/189370197): Enhance variable analysis.
        for (auto operand : op->getOperands()) {
          if (mlir::isa<TF::ResourceType>(
                  getElementTypeOrSelf(operand.getType()))) {
            legalize_to_tfl = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

            if (resolved != null) {
                return ResolvedCoordinates.create(resolved);
            }
    
            if (mappings.incompatibleModules.contains(key)) {
                // TODO: We should enhance this warning to list the conflicting dependencies.
                warnings.addIncompatible(String.format(
                    "Cannot determine variant coordinates for dependency '%s' since " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

                configs, minusConfigs, false, NullGradleApiSourcesResolver.INSTANCE, classpath.getTestConfigurations().getOrElse(Collections.emptySet())).visit(visitor);
            return visitor.getFiles();
        }
    
        public void enhance(Classpath classpath) {
            for (ClasspathEntry entry : classpath.getEntries()) {
                if (entry instanceof AbstractClasspathEntry) {
                    AbstractClasspathEntry classpathEntry = (AbstractClasspathEntry) entry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - The NodeAffinity plugin implements the PreFilter extension, offering enhanced performance for Filter. ([#99213](https://github.com/kubernetes/kubernetes/pull/99213), [@AliceZhang2016](https://github.com/AliceZhang2016)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  6. README.md

       set of functions like discovery, rich layer-7 routing, circuit breakers,
       policy enforcement and telemetry recording/reporting
       functions.
    
      > Note: The service mesh is not an overlay network. It
      > simplifies and enhances how microservices in an application talk to each
      > other over the network provided by the underlying platform.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    == Step 2. Understanding Tasks
    We've listed the tasks available when the project is initialized, but what if we want to create our own tasks?
    
    Gradle provides many _built-in_ tasks that developers can use to enhance build scripts.
    
    This example task copies `*.war` files from the `source` directory to the `target` directory using the `Copy` built-in task.
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                List<RemoteRepository> repositories,
                DependencyFilter dependencyFilter,
                Interpolator interpolator)
                throws ExtensionResolutionException {
            try {
                /* TODO: Enhance the PluginDependenciesResolver to provide a
                 * resolveCoreExtension method which uses a CoreExtension
                 * object instead of a Plugin as this makes no sense.
                 */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSet.java

     * before the dependencies are executed, but file dependencies do not.</p>
     *
     * <p>We should do one of these things to fix the current mess here:</p>
     * <ul>
     *     <li>Kill file dependencies</li>
     *     <li>Enhance file dependencies to know what files they produce</li>
     *     <li>Kill artifactType registry</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Added the `access_mode` label to `volume_manager_selinux_*` metrics. ([#123667](https://github.com/kubernetes/kubernetes/pull/123667), [@jsafrane](https://github.com/jsafrane))
    - Enhanced cloud provider integrations to support optional, per-Node custom labels that can be supplied and applied to Nodes by the node controller. These extra labels will only be applied where the cloud provider integration supports this feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top