Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 519 for recognizers (0.22 sec)

  1. cluster/addons/calico-policy-controller/ipamconfig-crd.yaml

        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

                        State.map.put(UUID.randomUUID(), "foo" * ${leakRate})
                    }
    
                    println "Build: " + State.x
                } catch(OutOfMemoryError e) {
                    // TeamCity recognizes this message as build failures if it occurs in build log
                    throw new OutOfMemoryError(e?.message?.replace(' ', '_'))
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/traceback.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // This program will crash.
    // We want the stack trace to include the C functions.
    // We use a fake traceback, and a symbolizer that dumps a string we recognize.
    
    /*
    #cgo CFLAGS: -g -O0
    
    // Defined in traceback_c.c.
    extern int crashInGo;
    int tracebackF1(void);
    void cgoTraceback(void* parg);
    void cgoSymbolizer(void* parg);
    */
    import "C"
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 21:47:44 UTC 2020
    - 949 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystemTest.groovy

            expect:
            os.toString() == "operating system 'sunos'"
            os.displayName == "operating system 'sunos'"
            os.internalOs == OperatingSystem.SOLARIS
        }
    
        def "recognises key operating systems"() {
            def os = new DefaultOperatingSystem(name)
    
            expect:
            os.name == name
            os.internalOs == internalOs
    
            where:
            name      | internalOs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. test/fixedbugs/issue43099.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check to make sure we don't try to constant fold a divide by zero.
    // This is a tricky test, as we need a value that's not recognized as 0
    // until lowering (otherwise it gets handled in a different path).
    
    package p
    
    func f() {
    	var i int
    	var s string
    	for i > 0 {
    		_ = s[0]
    		i++
    	}
    
    	var c chan int
    	c <- 1 % i
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 03:18:00 UTC 2020
    - 858 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm.go

    	// This only applies to fields that are recognized as part of the schema,
    	// but of an invalid type (i.e. cause an error when unmarshaling, rather
    	// than being dropped or causing a strictErr).
    	DropInvalidFields bool
    	// ReturnUnknownFieldPaths will return the paths to fields that are not
    	// recognized as part of the schema.
    	ReturnUnknownFieldPaths bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. test/codegen/issue56440.go

    // asmcheck
    
    // Copyright 2022 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.
    
    // Check to make sure that we recognize when the length of an append
    // is constant. We check this by making sure that the constant length
    // is folded into a load offset.
    
    package p
    
    func f(x []int) int {
    	s := make([]int, 3)
    	s = append(s, 4, 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:40:49 UTC 2022
    - 689 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructuredscheme/scheme.go

    		return nil, false, runtime.NewMissingVersionErr("object has no apiVersion field")
    	}
    
    	return []schema.GroupVersionKind{obj.GetObjectKind().GroupVersionKind()}, false, nil
    }
    
    func (t unstructuredObjectTyper) Recognizes(gvk schema.GroupVersionKind) bool {
    	return true
    }
    
    type unstructuredCreator struct{}
    
    // NewUnstructuredCreator returns a simple object creator that always returns an unstructured
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 27 12:37:23 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/ElementTypesAreNonnullByDefault.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 06 15:23:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/ElementTypesAreNonnullByDefault.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 17 15:44:29 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top