Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for __internal (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/codec_test.go

    		},
    		{
    			name:           "matched preferred group",
    			target:         gv("mygroup", "__internal"),
    			preferredKinds: []schema.GroupKind{gk("mygroup", ""), gk("anothergroup", "")},
    			kinds:          []schema.GroupVersionKind{gvk("yetanother", "v1", "Baz"), gvk("anothergroup", "v1", "Bar")},
    			expectKind:     gvk("mygroup", "__internal", "Bar"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    // Examples:
    //
    //	gv=mygroup/__internal, groupKinds=mygroup/Foo, anothergroup/Bar
    //	KindForGroupVersionKinds(yetanother/v1/Baz, anothergroup/v1/Bar) -> mygroup/__internal/Bar (matched preferred group/kind)
    //
    //	gv=mygroup/__internal, groupKinds=mygroup, anothergroup
    //	KindForGroupVersionKinds(yetanother/v1/Baz, anothergroup/v1/Bar) -> mygroup/__internal/Bar (matched preferred group)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    			unstructuredToConvert: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"apiVersion": "__internal",
    					"kind":       "Carp",
    				},
    			},
    			targetGV:                schema.GroupVersion{Group: "", Version: "__internal"},
    			expectedConvertedObject: &testapigroup.Carp{},
    		},
    		{
    			name: "convert empty unstructured w/o gvk to versioned should fail",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  4. hack/lib/util.sh

        # both group and version are "", this occurs when we generate deep copies for internal objects of the legacy v1 API.
        __internal)
          echo "pkg/apis/core"
          ;;
        meta/v1)
          echo "staging/src/k8s.io/apimachinery/pkg/apis/meta/v1"
          ;;
        meta/v1beta1)
          echo "staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1"
          ;;
        internal.apiserver.k8s.io/v1alpha1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    const (
    	// APIVersionInternal may be used if you are registering a type that should not
    	// be considered stable or serialized - it is a convention only and has no
    	// special behavior in this package.
    	APIVersionInternal = "__internal"
    )
    
    // GroupVersioner refines a set of possible conversion targets into a single option.
    type GroupVersioner interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/Internal.java

     *
     * @since 3.0
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface Internal {
        /**
         * The reason for ignoring this element.
         */
        String value() default "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/internal.kt

    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.Response
    import okhttp3.internal.concurrent.TaskRunner
    import okhttp3.internal.connection.RealConnection
    
    internal fun parseCookie(
      currentTimeMillis: Long,
      url: HttpUrl,
      setCookie: String,
    ): Cookie? = Cookie.parse(currentTimeMillis, url, setCookie)
    
    internal fun cookieToString(
      cookie: Cookie,
      forObsoleteRfc2965: Boolean,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/internal.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package internal contains non-exported functionality that are used by
    // packages in the text repository.
    package internal // import "golang.org/x/text/internal"
    
    import (
    	"sort"
    
    	"golang.org/x/text/language"
    )
    
    // SortTags sorts tags in place.
    func SortTags(tags []language.Tag) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/internal/internal.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by applyconfiguration-gen. DO NOT EDIT.
    
    package internal
    
    import (
    	"fmt"
    	"sync"
    
    	typed "sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    func Parser() *typed.Parser {
    	parserOnce.Do(func() {
    		var err error
    		parser, err = typed.NewParser(schemaYAML)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/log/internal/internal.go

    // Copyright 2023 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 internal contains definitions used by both log and log/slog.
    package internal
    
    // DefaultOutput holds a function which calls the default log.Logger's
    // output function.
    // It allows slog.defaultHandler to call into an unexported function of
    // the log package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 18:33:50 UTC 2023
    - 487 bytes
    - Viewed (0)
Back to top