Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,389 for addLink (0.18 sec)

  1. platforms/ide/tooling-api/readme.md

        execution failed for task :tooling-api:gradle3.5.1CrossVersionTest'.
        > No tests found for given includes: [org.gradle.integtests.tooling.r81.LogLevelConfigCrossVersionSpec](--tests filter)`
    
    You can fix it by adding `-PtestJavaVersion=8` to the build.
    
    This is due to the fact that Gradle 4.6 and older don't support Java 11 and newer, which is checked before the test filter is applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.cc

      TF_RETURN_IF_ERROR((*out)->Reset(name_.c_str(), nullptr));
    
      // Adding the user-provided inputs to the function.
      TF_RETURN_IF_ERROR((*out)->AddInputList(inputs));
    
      absl::Span<AbstractTensorHandle* const> captures(
          reinterpret_cast<AbstractTensorHandle* const*>(captures_.data()),
          captures_.size());
    
      // Adding the captures of the function.
      TF_RETURN_IF_ERROR((*out)->AddInputList(captures));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.mappingToJvm
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.reflection.reflect
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. releasenotes/notes/35712.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 25 15:54:05 UTC 2021
    - 141 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/tests/projectEvaluateEvents.out

    Adding test task to project ':project-a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionContainer.java

    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * Allows adding 'namespaced' DSL extensions to a target object.
     */
    @HasInternalProtocol
    public interface ExtensionContainer {
    
        /**
         * Adds a new extension to this container.
         *
         * Adding an extension of name 'foo' will:
         * <ul>
         * <li> add 'foo' dynamic property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:20 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/crypto/tls/66214.md

    3DES cipher suites were removed from the default list used when
    [Config.CipherSuites] is nil. The default can be reverted adding `tls3des=1` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 178 bytes
    - Viewed (0)
  8. releasenotes/notes/serviceentry-ip-auto-allocation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 40166
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 13:35:08 UTC 2022
    - 210 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/groovy/build.gradle

        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject { project ->
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            def projectString = project.toString()
            println "Adding test task to $projectString"
            project.task('test') {
                doLast {
                    println "Running tests for $projectString"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 483 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/tests/defaultDependency.out

    ------------------------------------------------------------
    
    dataFiles - The data artifacts to be processed for this plugin.
    \--- org.myorg:more-data:2.6 FAILED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
Back to top