Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for somethingElse (0.21 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. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/ModelReportNodeBuilderTest.groovy

                model {
                    childOne()
                    childTwo(aValue: 'someThing', anotherValue: 'somethingElse')
                }
            }).get()
    
            expect:
            node.'**'.childOne
            node.'**'.childTwo.@aValue[0] == 'someThing'
            node.'**'.childTwo.@anotherValue[0] == 'somethingElse'
        }
    
        def "can accept an empty closure"() {
            def node = ModelReportNodeBuilder.fromDsl {}.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 11 23:49:44 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			name: "bad kind",
    			instanceFn: func() *unstructured.Unstructured {
    				instance := fixtures.NewNoxuInstance(ns, "foo")
    				instance.Object["kind"] = "SomethingElse"
    				return instance
    			},
    			expectedError: `SomethingElse.mygroup.example.com "foo" is invalid: kind: Invalid value: "SomethingElse": must be WishIHadChosenNoxu`,
    		},
    	}
    
    	for _, tc := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
Back to top