Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,353 for example2 (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/example2/doc.go

    */
    
    // +k8s:deepcopy-gen=package
    // +groupName=example2.k8s.io
    //
    // package example2 contains an example API whose internal version is defined in
    // another group ("example"). This happens if a type is moved to a different
    // group. It's not recommended to move types across groups, though Kubernetes
    // have a few cases due to historical reasons. This package is for tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 20:55:33 UTC 2017
    - 1007 bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/test/groovy/org/gradle/api/plugins/jvm/internal/JvmComponentDependenciesTest.groovy

                implementation(module(group: "com.example", name: "example", version: "2.0")) {
                    // configure dependency
                }
            }
    
            then:
            1 * dependencyFactory.create("com.example", "example", "1.0") >> example
            1 * dependencyFactory.create("com.example", "example", "2.0") >> example2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:56:35 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/testdata/localhost.yaml

          80: 8080
    # Define another local address, but this one uses TCP. This allows testing HBONE and TCP with one config.
    - uid: cluster1//v1/Pod/default/local-tcp
      name: local-tcp
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.2"]
      protocol: TCP
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
        "default/example2.com":
          80: 8080
    policies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

                    specs.forTaskPath(':secondTest').includePackage('example2')
                }
            }
    
            then:
            // 2 test class + 2 test method events
            events.testClassesAndMethods.size() == 4
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example2/install/install.go

    limitations under the License.
    */
    
    // Package install installs the example2 API group, making it available as
    // an option to all of the API encoding/decoding machinery.
    package install
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apiserver/pkg/apis/example"
    	example2v1 "k8s.io/apiserver/pkg/apis/example2/v1"
    )
    
    // Install registers the API group and adds types to a scheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/doc.go

    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:conversion-gen=k8s.io/apiserver/pkg/apis/example2
    // +k8s:conversion-gen=k8s.io/apiserver/pkg/apis/example
    // +k8s:openapi-gen=false
    // +k8s:defaulter-gen=TypeMeta
    // +k8s:protobuf-gen=package
    
    // +groupName=example2.apiserver.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 23:00:55 UTC 2023
    - 904 bytes
    - Viewed (0)
  7. 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)
  8. src/reflect/internal/example2/example.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 example2
    
    type MyStruct struct {
    	MyStructs []MyStruct
    	MyStruct  *MyStruct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 246 bytes
    - Viewed (0)
  9. src/go/doc/testdata/examples/iota.go

    )
    
    const (
    	e = iota
    	f
    )
    
    // The example refers to only one of the constants in the iota group, but we
    // must keep all of them because of the iota. The second group of constants can
    // be trimmed. The third has an iota, but is unused, so it can be eliminated.
    
    func Example() {
    	_ = b
    	_ = d
    }
    
    // Need two examples to hit the playExample function.
    
    func Example2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 596 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.proto

    syntax = "proto2";
    
    package k8s.io.apiserver.pkg.apis.example2.v1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apiserver/pkg/apis/example2/v1";
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top