Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,521 for examplev1 (0.1 sec)

  1. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v1.9.0.txt

    Module example.com/retract/self/pseudo is a module that retracts its own
    latest version, as well as an earlier version.
    
    An unretracted pseudo-version is available.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 310 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example2/register.go

    limitations under the License.
    */
    
    package example2
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/apis/example"
    )
    
    var (
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    // GroupName is the group name use in this package
    const GroupName = "example2.apiserver.k8s.io"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 20:55:33 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginIntegrationTest.groovy

                    destinationDirectory = file("build/classes/custom")
                    classpath = files()
                }
    
                sourceSets.main.output.classesDirs.from(taskProvider.flatMap(it -> it.getDestinationDirectory()))
            """
            file("src/custom/java/com/example/Example.java") << """
                package com.example;
                public class Example {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/go/doc/testdata/examples/empty.go

    // Copyright 2021 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 p
    
    func Example() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 206 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_noupgrade_v1.0.0.txt

    -- .mod --
    module example.com/retract/noupgrade
    
    go 1.19
    
    retract v1.0.0 // bad
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 20:57:09 UTC 2022
    - 114 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_noroot_v1.0.0.txt

    A module which has no root package.
    
    -- .mod --
    module example.com/noroot
    -- .info --
    {"Version":"v1.0.0"}
    -- pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 14 18:01:34 UTC 2019
    - 136 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_join_subpkg_v1.0.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join/subpkg
    -- .info --
    {"Version": "v1.0.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 170 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/patch.example.com_direct_v1.0.0.txt

    patch.example.com/direct v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- direct.go --
    package direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 336 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/patch.example.com_depofdirectpatch_v1.0.0.txt

    patch.example.com/depofdirectpatch v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/depofdirectpatch
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/depofdirectpatch
    -- depofdirectpatch.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 251 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_rename_v1.0.0-bad.txt

    Module example.com/retract/rename is renamed in a later version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.0.0-bad"}
    -- .mod --
    module example.com/retract/rename
    
    go 1.16
    -- go.mod --
    module example.com/retract/rename
    
    go 1.16
    -- rename.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 374 bytes
    - Viewed (0)
Back to top