Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for someDep (0.2 sec)

  1. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/build.gradle

    war {
        webAppDirectory = file('src/main/webapp')
        from 'src/rootContent' // adds a file-set to the root of the archive
        webInf { from 'src/additionalWebInf' } // adds a file-set to the WEB-INF dir.
        webXml = file('src/someWeb.xml') // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/configuration/HelpTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    class HelpTest extends AbstractProjectBuilderSpec {
        Help helpTask
    
        def setup() {
            helpTask = project.tasks.create("somehelp", Help.class)
        }
    
        def "gives decent error message for unknown tasks"() {
            when:
            helpTask.setTaskPath("notexisting")
            helpTask.displayHelp()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 15 07:22:20 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            credentials(AwsCredentials) {
                accessKey "someKey"
                secretKey "someSecret"
                // optional
                sessionToken "someSTSToken"
            }
        }
    
        ivy {
            url "s3://myCompanyBucket/ivyrepo"
            credentials(AwsCredentials) {
                accessKey "someKey"
                secretKey "someSecret"
                // optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

        }
    
        def "registers a Swift PM publication for each production component"() {
            def component = Stub(DefaultCppApplication)
            def prop = Stub(Property)
            prop.get() >> "SomeApp"
            component.baseName >> prop
    
            when:
            project.pluginManager.apply(CppBasePlugin)
            project.components.add(component)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. pkg/apis/admission/fuzzer/fuzzer.go

    	return []interface{}{
    		func(s *runtime.RawExtension, c fuzz.Continue) {
    			u := &unstructured.Unstructured{Object: map[string]interface{}{
    				"apiVersion": "unknown.group/unknown",
    				"kind":       "Something",
    				"somekey":    "somevalue",
    			}}
    			s.Object = u
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 14 21:57:55 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

    // composites. See `IsSupportedComposite` for list of supported ops.
    //
    // Example:
    //   %0 = stablehlo.composite "odml.some_op" <args> {
    //      composite_attrs = {<attrs>},
    //      version = 0 : i32
    //   }
    //   ==>
    //   %0 = tfl.custom(<args>) {
    //     custom_code = "odml.some_op",
    //     custom_option = #tfl<const_bytes : "flexbuffer_serialized_attrs">
    //   }
    struct LegalizeCompositeToCustomOpPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/errors.mlir

    // expected-error @+1 {{failed to legalize operation 'func.func' that was explicitly marked illegal}}
    func.func @test_identity_wrong_type(%arg0: tensor<4x2x!tf_type.string>) -> tensor<4x2x!tf_type.stringref> {
      %0 = "tf.SomeOp"(%arg0) : (tensor<4x2x!tf_type.string>) -> tensor<4x2x!tf_type.stringref>
      func.return %0 : tensor<4x2x!tf_type.stringref>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 428 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

    
    // CHECK-LABEL: func @testControlOperands
    func.func @testControlOperands() {
      %0:2 = tf_executor.graph {
        %1 = tf_executor.island {
          "tf.someOp"() : () -> ()
          tf_executor.yield
        }
        %2:3 = tf_executor.island(%1) {
          %3:2 = "tf_device.parallel_execute"() ({
            %4 = "tf.opA"() : () -> tensor<i1>
            tf_device.return %4 : tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/executor_tpuv1_outline_tpu_island.mlir

          %3 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          %4 = "tf.opA"(%3) : (tensor<i1>) -> tensor<i1>
          %5 = "tf.SomeOp"(%arg0, %1#0) : (tensor<i1>, tensor<f32>) -> tensor<i32>
          tf_executor.yield %4, %5 : tensor<i1>, tensor<i32>
        }
        tf_executor.fetch %2#0 : tensor<i1>
      }
      func.return %0 : tensor<i1>
    }
    
    // CHECK: module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            credentials(AwsCredentials::class) {
                accessKey = "someKey"
                secretKey = "someSecret"
                // optional
                sessionToken = "someSTSToken"
            }
        }
    
        ivy {
            url = uri("s3://myCompanyBucket/ivyrepo")
            credentials(AwsCredentials::class) {
                accessKey = "someKey"
                secretKey = "someSecret"
                // optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top