Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for 201701 (0.15 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/events.k8s.io.v1.Event.yaml

    deprecatedCount: 15
    deprecatedFirstTimestamp: "2013-01-01T01:01:01Z"
    deprecatedLastTimestamp: "2014-01-01T01:01:01Z"
    deprecatedSource:
      component: componentValue
      host: hostValue
    eventTime: "2002-01-01T01:01:01.000002Z"
    kind: Event
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1beta1.Event.json

            "apiVersion": "apiVersionValue",
            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "eventTime": "2002-01-01T01:01:01.000002Z",
      "series": {
        "count": 1,
        "lastObservedTime": "2002-01-01T01:01:01.000002Z"
      },
      "reportingController": "reportingControllerValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1beta1.Event.yaml

    deprecatedCount: 15
    deprecatedFirstTimestamp: "2013-01-01T01:01:01Z"
    deprecatedLastTimestamp: "2014-01-01T01:01:01Z"
    deprecatedSource:
      component: componentValue
      host: hostValue
    eventTime: "2002-01-01T01:01:01.000002Z"
    kind: Event
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/fossil/hello.txt

    handle fossil
    
    env USER=rsc
    fossil init --date-override 2017-09-22T01:15:36Z hello.fossil
    fossil open --keep hello.fossil
    
    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
  5. tests/test_datetime_custom_encoder.py

        def get_model():
            return model
    
        client = TestClient(app)
        with client:
            response = client.get("/model")
        assert response.json() == {"dt_field": "2019-01-01T08:00:00+00:00"}
    
    
    # TODO: remove when deprecating Pydantic v1
    @needs_pydanticv1
    def test_pydanticv1():
        class ModelWithDatetimeField(BaseModel):
            dt_field: datetime
    
            class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    svn propset svn:author rsc --revprop -r2
    svn propset svn:date 2017-09-22T15:49:11.130406Z --revprop -r2
    
    svn add other
    svn commit -m 'add other'
    svn propset svn:author rsc --revprop -r3
    svn propset svn:date 2017-09-22T16:56:16.665173Z --revprop -r3
    
    svn add tiny
    svn commit -m 'add tiny'
    svn propset svn:author rsc --revprop -r4
    svn propset svn:date 2017-09-27T17:48:18.350817Z --revprop -r4
    
    cd git-README-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. tests/test_jsonable_encoder.py

            pass
    
        model = ModelWithCustomEncoder(dt_field=datetime(2019, 1, 1, 8))
        assert jsonable_encoder(model) == {"dt_field": "2019-01-01T08:00:00+00:00"}
        subclass_model = ModelWithCustomEncoderSubclass(dt_field=datetime(2019, 1, 1, 8))
        assert jsonable_encoder(subclass_model) == {"dt_field": "2019-01-01T08:00:00+00:00"}
    
    
    # TODO: remove when deprecating Pydantic v1
    @needs_pydanticv1
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/hello.txt

    cd .checkout
    [GOOS:windows] svn checkout file:///$ROOT .
    [!GOOS:windows] svn checkout file://$ROOT .
    
    svn add hello.go
    svn commit --file MSG
    svn propset svn:author 'rsc' --revprop -r1
    svn propset svn:date '2017-09-22T01:12:45.861368Z' --revprop -r1
    
    svn update
    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    cmp stdout .svn-log
    
    -- .checkout/MSG --
    hello world
    
    -- .checkout/hello.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    <log>
    <logentry
       revision="3">
    <author>rsc</author>
    <date>2017-10-04T15:09:35.963034Z</date>
    <msg>move from vcs-test.swtch.com to vcs-test.golang.org</msg>
    </logentry>
    <logentry
       revision="2">
    <author>rsc</author>
    <date>2017-09-27T18:16:14.650893Z</date>
    <msg>add p1</msg>
    </logentry>
    <logentry
       revision="1">
    <author>rsc</author>
    <date>2017-09-27T18:00:52.201719Z</date>
    <msg>git</msg>
    </logentry>
    </log>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/hg/custom-hg-hello.txt

    handle hg
    hg init
    
    hg add hello.go
    hg commit --user 'Russ Cox <******@****.***>' --date '2017-10-10T19:39:36-04:00' --message 'hello'
    
    hg log -r ':' --template '{node|short} {desc|strip|firstline}\n'
    cmp stdout .hg-log
    
    -- .hg-log --
    a8c8e7a40da9 hello
    -- hello.go --
    package main // import "vcs-test.golang.org/go/custom-hg-hello"
    
    func main() {
    	println("hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 366 bytes
    - Viewed (0)
Back to top