Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 423 for year (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. hack/boilerplate/boilerplate.py

    
    def get_dates():
        years = datetime.datetime.now().year
        return "(%s)" % "|".join(str(year) for year in range(2014, years + 1))
    
    
    def get_regexs():
        regexs = {}
        # Search for "YEAR" which exists in the boilerplate, but shouldn't in the real thing
        regexs["year"] = re.compile("YEAR")
        # get_dates return 2014, 2015, 2016, 2017, or 2018 until the current year
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/src/templates/README.md

    This is the year ${year}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 25 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/src/templates/README.md

    This is the year ${year}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 25 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/src/templates/README.md

    This is the year ${year}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 25 bytes
    - Viewed (0)
  10. src/time/zoneinfo_windows.go

    	d1 := &i.DaylightDate
    	i0 := 0
    	i1 := 1
    	if d0.Month > d1.Month {
    		d0, d1 = d1, d0
    		i0, i1 = i1, i0
    	}
    
    	// 2 tx per year, 100 years on each side of this year
    	l.tx = make([]zoneTrans, 400)
    
    	t := Now().UTC()
    	year := t.Year()
    	txi := 0
    	for y := year - 100; y < year+100; y++ {
    		tx := &l.tx[txi]
    		tx.when = pseudoUnix(y, d0) - int64(l.zone[i1].offset)
    		tx.index = uint8(i0)
    		txi++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top