Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,048 for other_1 (0.13 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/ParallelTestExecutionIntegrationTest.groovy

                            }
                        }
                    }
                    other(JvmTestSuite) {
                    }
                }
            """
    
            def tests = blockingServer.concurrent("test_1", "test_2")
            def other = blockingServer.concurrent("other_1", "other_2")
            blockingServer.expectInAnyOrder(tests, other)
    
            when:
            executer.withArguments("--parallel", "--max-workers=4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

        @Override
        String someValue() {
            "{s1}"
        }
    
        @Override
        String someOtherValue() {
            "{other1}"
        }
    
        @Override
        String someOtherValue2() {
            "{other2}"
        }
    
        @Override
        String someOtherValue3() {
            "{other3}"
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    		{
    			name: "Xfcc Header single hop",
    			// nolint lll
    			xfccHeader: `Hash=meshclient;Subject="";URI=spiffe://mesh.example.com/ns/otherns/sa/othersa`,
    			caller: &security.Caller{
    				AuthSource: security.AuthSourceClientCertificate,
    				Identities: []string{
    					"spiffe://mesh.example.com/ns/otherns/sa/othersa",
    				},
    			},
    		},
    		{
    			name: "Xfcc Header multiple hops",
    			// nolint lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        @Test
        void canExecuteExternalScriptFromExternalScript() {
            testFile('build.gradle') << ''' apply { from 'other1.gradle' } '''
            testFile('other1.gradle') << ''' apply { from 'other2.gradle' } '''
            testFile('other2.gradle') << ''' task doStuff '''
    
            inTestDirectory().withTasks('doStuff').run()
        }
    
        @Test
        void canFetchScriptViaHttp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

        String someValue() {
            return "value1"
        }
    
        @Override
        String someOtherValue() {
            return "other1"
        }
    
        @Override
        String someOtherValue2() {
            return "other2"
        }
    
        @Override
        String someOtherValue3() {
            return "other3"
        }
    
        @Override
        ManagedFactory managedFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/organizingGradleProjects/configureProjectUsingScript/groovy/other.gradle

    println "configuring $project"
    tasks.register('hello') {
        doLast {
            println 'hello from other script'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 120 bytes
    - Viewed (0)
  7. test/fixedbugs/issue18419.dir/other.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package other
    
    type Exported struct {
    	Member int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 09 16:13:52 UTC 2017
    - 258 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

    // CHECK-LABEL: my_map_and_batch_dataset
    func.func @my_map_and_batch_dataset(%input: tensor<*x!tf_type.variant>,
                                   %other1: tensor<*xf32>,
                                   %other2: tensor<*xi32>) -> tensor<*x!tf_type.variant> {
      %0 = "tf.MyMapAndBatchDataset"(%input, %other1, %other2)
        {batch_size=1000 : i64, num_parallel_calls = 8 : i64, drop_remainder = 0 : i1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/depmgmt/other-import.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd">
        <modelVersion>4.1.0</modelVersion>
    
        <groupId>test</groupId>
        <artifactId>other-import</artifactId>
        <version>0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>test</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 732 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

            def transformStep2 = new TestTransformStepNode("transformStep2")
            def other1 = new TestNode("other1")
            def other2 = new TestNode("other2")
    
            dependsOn(task1, [other1])
            dependsOn(other1, [transformStep1])
            dependsOn(transformStep1, [task2, other2])
            dependsOn(other2, [task3])
            dependsOn(task4, [transformStep2])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top