Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for someDep (0.35 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            }
        }
    
        def 'can combine exclude task filters'() {
            buildFile << """
                task someDep
                task someOtherDep
                task someTask(dependsOn: [someDep, someOtherDep])
            """
    
            expect:
            2.times {
                executer.withTasks("someTask").withArguments("-x", "someDep", "-x", "someOtherDep").run().assertTasksExecuted(":someTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandlerTest.groovy

        }
    
        void "dynamic method fails for unknown configuration"() {
            when:
            dependencyConstraintHandler.unknown("someDep")
    
            then:
            def e = thrown(MissingMethodException)
            e.message.startsWith('Could not find method unknown() for arguments [someDep] on ')
        }
    
        void "dynamic method fails for no args"() {
            when:
            dependencyConstraintHandler.someConf()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:06 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandlerTest.groovy

        }
    
        void "dynamic method fails for unknown configuration"() {
            when:
            dependencyHandler.unknown("someDep")
    
            then:
            def e = thrown(MissingMethodException)
            e.message.startsWith('Could not find method unknown() for arguments [someDep] on ')
        }
    
        void "dynamic method fails for no args"() {
            when:
            dependencyHandler.someConf()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 10:37:21 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

            }
    
            if (getDependencySpec() == null) {
                throw new InvalidUserDataException("Dependency insight report cannot be generated because the dependency to show was not specified."
                    + "\nIt can be specified from the command line, e.g: '" + getPath() + " --dependency someDep'");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_arguments.mlir

    func.func private @handles_multiple_returns(%arg0: f32, %arg1: f32) -> (f32, f32) {
      "SomeOp"() : () -> ()
     ^bb0:
      return %arg0, %arg1 : f32, f32
     ^bb1:
      return %arg1, %arg0 : f32, f32
    }
    
    // -----
    
    // CHECK-LABEL: @removes_multiple_returns
    func.func private @removes_multiple_returns(%arg0: f32, %arg1: f32) -> (f32, f32) {
      "SomeOp"() : () -> ()
     ^bb0:
      // CHECK: return
      // CHECK-NOT: arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 23:00:44 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/src/someWeb.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/src/someWeb.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

            project.pluginManager.apply(BasePlugin)
            project.version = '1.0'
    
            then:
            def someZip = project.tasks.create('someZip', Zip)
            someZip.destinationDirectory.get().asFile == project.distsDirectory.get().asFile
            someZip.archiveVersion.get() == project.version
            someZip.archiveBaseName.get() == project.archivesBaseName
    
            and:
            def someTar = project.tasks.create('someTar', Tar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/case_op.mlir

        func.return %0 : tensor<i32>
      }
      func.func @branch_0(%arg0: tensor<i32>) -> tensor<i32> {
        %0 = "tf.some_op"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i32>) -> tensor<i32>
        func.return %0 : tensor<i32>
      }
      func.func @branch_1(%arg0: tensor<i32>) -> tensor<i32> {
        %0 = "tf.some_op"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 16:14:17 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/while_op.mlir

    }
    
    func.func @while_body_with_cluster_attr(%arg0: tensor<i32>) -> tensor<i32> {
      %0 = "tf.some_op"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i32>) -> tensor<i32>
      func.return %0 : tensor<i32>
    }
    func.func @while_cond_with_cluster_attr(%arg0: tensor<i32>) -> tensor<i1> {
      %0 = "tf.some_op"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top