Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,521 for examplev1 (0.27 sec)

  1. src/go/doc/testdata/testing.go

    // of go test.
    func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
    	flag.Parse()
    	parseCpuList()
    
    	before()
    	startAlarm()
    	testOk := RunTests(matchString, tests)
    	exampleOk := RunExamples(examples)
    	if !testOk || !exampleOk {
    		fmt.Println("FAIL")
    		os.Exit(1)
    	}
    	fmt.Println("PASS")
    	stopAlarm()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentModuleMetadataDetails.java

     * For information and examples please see {@link org.gradle.api.artifacts.dsl.ComponentModuleMetadataHandler}
     *
     * @since 2.2
     */
    public interface ComponentModuleMetadataDetails extends ComponentModuleMetadata {
    
        /**
         * Configures a replacement module for this module.
         * A real world example: 'com.google.collections:google-collections' is replaced by 'com.google.guava:guava'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         *     <td>Specifies a list of rootDirs where to look for dependencies. These are evaluated as per {@link org.gradle.api.Project#files(Object...)}</td></tr>
         * </table>
         *
         * <p>Examples:</p>
         * <pre class='autoTested'>
         * repositories {
         *     flatDir name: 'libs', dirs: "$projectDir/libs"
         *     flatDir dirs: ["$projectDir/libs1", "$projectDir/libs2"]
         * }
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    	emptyResult := &v1.Example{}
    	obj, err := c.Fake.
    		Invokes(testing.NewCreateAction(examplesResource, c.ns, example), emptyResult)
    
    	if obj == nil {
    		return emptyResult, err
    	}
    	return obj.(*v1.Example), err
    }
    
    // Update takes the representation of a example and updates it. Returns the server's representation of the example, and an error, if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/Instantiator.java

     * a number of capabilities. Some examples:
     *
     * <ul>
     * <li>An implementation may decorate the instances in some fashion, for example to mix in the Groovy DSL, and so may return a subclass of the requested type.
     *
     * <li>An implementation may accept abstract classes or interfaces and provide implementations for the missing pieces, for example providing an implementation of ExtensionAware.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_ambiguous_a_b_v0.0.0-empty.txt

    Module example.com/ambiguous/a/b is a suffix of example.com/a.
    This version contains no package.
    -- .mod --
    module example.com/ambiguous/a/b
    
    go 1.16
    -- .info --
    {"Version":"v0.0.0-empty"}
    -- go.mod --
    module example.com/ambiguous/a/b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 20:54:35 UTC 2020
    - 244 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-multiline2.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-multiline2"}
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 130 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-unprintable.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0-unprintable"}
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 131 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.1-order.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 96 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/android-application/src/main/groovy/com.example.android-application.gradle

        }
    }
    
    dependencies {
        implementation(platform('com.example.platform:product-platform'))
        testImplementation(platform('com.example.platform:test-platform'))
    
        implementation('org.jetbrains.kotlin:kotlin-stdlib')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 674 bytes
    - Viewed (0)
Back to top