Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 153 for input1 (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsDynamicGroovySettingsScriptIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.undeclared
    
    class UndeclaredBuildInputsDynamicGroovySettingsScriptIntegrationTest extends AbstractUndeclaredBuildInputsIntegrationTest implements GroovyPluginImplementation {
        @Override
        String getLocation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    from file("copy2source.txt")
                }
    
                tasks.register("reader") {
                    inputs.files($tasksInput)
                    doLast {
                        println inputs.files.files*.name
                    }
                }
            """
    
            when:
            configurationCacheRun "reader"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsKotlinBuildScriptPluginsBlockIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.undeclared
    
    class UndeclaredBuildInputsKotlinBuildScriptPluginsBlockIntegrationTest extends AbstractUndeclaredBuildInputsIntegrationTest implements KotlinPluginImplementation {
    
        @Override
        boolean isRestrictedDsl() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableRead.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.undeclared
    
    abstract class EnvVariableRead extends BuildInputRead {
        static EnvVariableRead getEnv(String name) {
            return new EnvVariableRead() {
                @Override
                String getKotlinExpression() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pilot/pkg/simulation/traffic.go

    }
    
    func (sim *Simulation) Run(input Call) (result Result) {
    	result = Result{t: sim.t}
    	input = input.FillDefaults()
    	if input.Alpn != "" && input.TLS == Plaintext {
    		result.Error = fmt.Errorf("invalid call, ALPN can only be sent in TLS requests")
    		return result
    	}
    
    	// First we will match a listener
    	l := matchListener(sim.Listeners, input)
    	if l == nil {
    		result.Error = ErrNoListener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// in the analyzed source code such as a potential mistake.
    	// It may be called by the Run function.
    	Report func(Diagnostic)
    
    	// ResultOf provides the inputs to this analysis pass, which are
    	// the corresponding results of its prerequisite analyzers.
    	// The map keys are the elements of Analysis.Required,
    	// and the type of each corresponding value is the required
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    	"istio.io/istio/pkg/workloadapi/security"
    )
    
    func TestPodWorkloads(t *testing.T) {
    	cases := []struct {
    		name   string
    		inputs []any
    		pod    *v1.Pod
    		result *workloadapi.Workload
    	}{
    		{
    			name:   "simple pod not running and not have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      return fill;
    }
    
    // Add parallel collection of inputs to the replicated op.
    LogicalResult AppendReplicatedInput(OpBuilder& builder, ReplicateOp replicate,
                                        ValueRange inputs, Type type,
                                        BlockArgument& block_arg) {
      // check that inputs length is same as num_replicas.
      if (inputs.size() != replicate.getN()) {
        return replicate.emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/JavaPluginImplementation.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.undeclared
    
    import org.gradle.api.Action
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.Task
    import org.gradle.test.fixtures.file.TestFile
    
    trait JavaPluginImplementation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

    import java.util.concurrent.Executors
    
    
    class InputTrackingStateTest {
    
        @Test
        fun `input tracking is enabled by default`() {
            val state = InputTrackingState()
    
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
        fun `input tracking can be disabled`() {
            val state = InputTrackingState()
            state.disableForCurrentThread()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top