Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for yeah (0.33 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStubTest.java

    import org.apache.maven.project.MavenProject;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests the stub. Yeah, I know.
     *
     */
    class ProjectDependencyGraphStubTest {
        ProjectDependencyGraphStub stub = new ProjectDependencyGraphStub();
    
        @Test
        void testADependencies() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/regexp/testdata/basic.dat

    E	(bc+d$|ef*g.|h?i(j|k))	ij		(0,2)(0,2)(1,2)
    E	(bc+d$|ef*g.|h?i(j|k))	reffgz		(1,6)(1,6)
    E	(((((((((a)))))))))	a		(0,1)(0,1)(0,1)(0,1)(0,1)(0,1)(0,1)(0,1)(0,1)(0,1)
    BE	multiple words		multiple words yeah	(0,14)
    E	(.*)c(.*)		abcde		(0,5)(0,2)(3,5)
    BE	abcd			abcd		(0,4)
    E	a(bc)d			abcd		(0,4)(1,3)
    E	a[-]?c		ac		(0,3)
    E	M[ou]'?am+[ae]r .*([AEae]l[- ])?[GKQ]h?[aeu]+([dtz][dhz]?)+af[iy]	Muammar Qaddafi	(0,15)(?,?)(10,12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/Helpers.java

        List<?> act = copyToList(actual);
        String actString = act.toString();
    
        // Of course we could take pains to give the complete description of the
        // problem on any failure.
    
        // Yeah it's n^2.
        for (Object object : exp) {
          if (!act.remove(object)) {
            fail(
                "did not contain expected element "
                    + object
                    + ", "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        List<?> act = copyToList(actual);
        String actString = act.toString();
    
        // Of course we could take pains to give the complete description of the
        // problem on any failure.
    
        // Yeah it's n^2.
        for (Object object : exp) {
          if (!act.remove(object)) {
            fail(
                "did not contain expected element "
                    + object
                    + ", "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLoveGradle', 'true')
     *         node.appendNode('butAlso', 'I find increasing pleasure tinkering with output *.iml contents. Yeah!!!')
     *       }
     *
     *       //closure executed after *.iml content is loaded from existing file
     *       //but before gradle build information is merged
     *       beforeMerged { module -&gt;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. internal/s3select/sql/jsondata/books.json

        "publicationHistory": [
            {
                "year": 1934,
                "publisher": "Collins Crime Club (London)",
                "type": "Hardcover",
                "pages": 256
            },
            {
                "year": 1934,
                "publisher": "Dodd Mead and Company (New York)",
                "type": "Hardcover",
                "pages": 302
            },
            {
                "year": 2011,
                "publisher": "Harper Collins",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/msvcpp/VisualStudioVersion.java

        private final VersionNumber version;
        private final String year;
    
        VisualStudioVersion(String version, String year) {
            this.version = VersionNumber.parse(version);
            this.year = year;
        }
    
        public VersionNumber getVersion() {
            return version;
        }
    
        public String getYear() {
            return year;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/time/time.go

    	return
    }
    
    // Date returns the year, month, and day in which t occurs.
    func (t Time) Date() (year int, month Month, day int) {
    	year, month, day, _ = t.date(true)
    	return
    }
    
    // Year returns the year in which t occurs.
    func (t Time) Year() int {
    	year, _, _, _ := t.date(false)
    	return year
    }
    
    // Month returns the month of the year specified by t.
    func (t Time) Month() Month {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/build.gradle

    def processTemplates = tasks.register('processTemplates', ProcessTemplates) {
        templateEngine = TemplateEngineType.FREEMARKER
        sourceFiles.from fileTree('src/templates')
        templateData.name = 'test'
        templateData.variables = [year: '2012']
        outputDir = file(layout.buildDirectory.dir('genOutput'))
    }
    
    interface Injected {
        @Inject FileSystemOperations getFs()
    }
    
    // tag::ad-hoc-task[]
    tasks.register('processTemplatesAdHoc') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

    val processTemplates by tasks.registering(ProcessTemplates::class) {
        templateEngine = TemplateEngineType.FREEMARKER
        sourceFiles.from(fileTree("src/templates"))
        templateData.name = "test"
        templateData.variables = mapOf("year" to "2012")
        outputDir = file(layout.buildDirectory.dir("genOutput"))
    }
    
    interface Injected {
        @get:Inject val fs: FileSystemOperations
    }
    
    // tag::ad-hoc-task[]
    tasks.register("processTemplatesAdHoc") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top