Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for somethingElse (0.15 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. 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. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

            then: 1 * checker.validateMutation(STRATEGY)
    
            when: rules.withModule("something:else", Actions.doNothing())
            then: 1 * checker.validateMutation(STRATEGY)
    
            when: rules.withModule("something:else", Closure.IDENTITY)
            then: 1 * checker.validateMutation(STRATEGY)
    
            when: rules.withModule("something:else", ruleSource)
            then: 1 * checker.validateMutation(STRATEGY)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top