Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for somethingElse (0.28 sec)

  1. platforms/documentation/docs/src/snippets/modelRules/configureAsRequired/tests/modelDslConfigureRuleNotRunWhenNotRequired.sample.conf

    # tag::cli[]
    # gradle somethingElse
    # end::cli[]
    executable: gradle
    args: somethingElse
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 157 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/modelRules/configureAsRequired/tests/modelDslConfigureRuleNotRunWhenNotRequired.out

    > Task :somethingElse
    Not using person
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/modelRules/configureAsRequired/groovy/build.gradle

        }
        tasks {
            showPerson(Task) {
                def p = $.person
                doLast {
                    println "Hello $p.firstName $p.lastName!"
                }
            }
            somethingElse(Task) {
                doLast {
                    println "Not using person"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 648 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            file("build.gradle.dcl") << """
                library {
                    dependencies {
                        something("com.google.guava:guava:30.1.1-jre")
                        somethingElse("org.apache.commons:commons-lang3:3.12.0")
                    }
                }
            """
            file("settings.gradle") << defineSettings()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pkg/apis/node/validation/validation_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "empty",
    				Namespace: "somethingelse", // immutable
    			},
    			Handler: "bar",
    		},
    	}, {
    		name:        "invalid Handler update",
    		expectError: true,
    		old:         old,
    		new: node.RuntimeClass{
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			Handler:    "somethingelse",
    		},
    	}}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            1 * listener.something("12")
            0 * _
    
            when:
            def broadcast2 = listenerManager.getBroadcaster(DifferentListener)
            broadcast2.somethingElse("11")
    
            then:
            1 * listener.somethingElse("11")
            0 * _
        }
    
        def "registers stateful listeners that are registered before listener manager"() {
            given:
            def created = Mock(Runnable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/partitioned-topological-sort.mlir

      %tmp1 = "tfl.add"(%const, %const) { fused_activation_function = "NONE" } : (tensor<1xf32>,tensor<1xf32>) -> (tensor<1xf32>)
      %tmp2 = "tfl.custom"(%tmp1, %tmp1) { custom_code="SomethingElse", custom_option=#tfl<const_bytes : "0x00"> } : (tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>)
      %tmp3 = "tfl.add"(%const, %tmp2) { fused_activation_function = "NONE" } : (tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 22:33:49 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

            and:
            propertyNames(new WithProperties()) == ['class', 'metaClass', 'prop1', 'prop2', 'something', 'somethingElse', 'writeOnly'] as Set
        }
    
        def "read property"() {
            expect:
            readableProperty(JavaTestSubject, String, "myProperty").getValue(myProperties) == "myValue"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

                        maven { url "${mavenRepo.uri}" }
                    }
    
                    configurations {
                        compile
                    }
    
                    group "org.somethingelse"
                }
    
                project(":api2") {
                    version = '1.5'
                }
    
                project(":impl") {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            @OptionValues("someOption")
            List<String> getValues() { return Arrays.asList("something") }
    
            @OptionValues("someOption")
            List<String> getValues2() { return Arrays.asList("somethingElse") }
        }
    
        static class WithDuplicateOptionInAnotherInterface implements TestInterface {
            @Option(option = "stringValue", description = "string value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
Back to top