Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 428 for typed (0.88 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/reflect/HasPublicType.java

     * Allows a scriptable object, such as a project extension, to declare its preferred public type.
     *
     * The public type of an object is the one exposed to statically-typed consumers, such as Kotlin build scripts, by default.
     *
     * @since 3.5
     */
    public interface HasPublicType {
    
        /**
         * Public type.
         *
         * @return this object's public type
         */
        TypeOf<?> getPublicType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/fake/fake_apiextensions_client.go

    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	v1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1"
    	rest "k8s.io/client-go/rest"
    	testing "k8s.io/client-go/testing"
    )
    
    type FakeApiextensionsV1beta1 struct {
    	*testing.Fake
    }
    
    func (c *FakeApiextensionsV1beta1) CustomResourceDefinitions() v1beta1.CustomResourceDefinitionInterface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	toGVK, ok := target.KindForGroupVersionKinds([]schema.GroupVersionKind{fromGVK})
    	if !ok {
    		// TODO: should this be a typed error?
    		return nil, fmt.Errorf("%v is unstructured and is not suitable for converting to %q", fromGVK.String(), target)
    	}
    	// Special-case typed scale conversion if this custom resource supports a scale endpoint
    	if c.convertScale {
    		if _, isInScale := in.(*autoscalingv1.Scale); isInScale {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue16949.go

    // errorcheck
    
    // Copyright 2016 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.
    
    // Ensure that typed non-integer len and cap make arguments are not accepted.
    
    package main
    
    var sink []byte
    
    func main() {
    	sink = make([]byte, 1.0)
    	sink = make([]byte, float32(1.0)) // ERROR "non-integer.*len|must be integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:56:19 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    	}
    
    	liveObjTyped, err := f.typeConverter.ObjectToTyped(liveObjVersioned)
    	if err != nil {
    		return nil, fmt.Errorf("failed to convert live obj to typed: %v", err)
    	}
    
    	var lastAppliedObj = &unstructured.Unstructured{Object: map[string]interface{}{}}
    	err = json.Unmarshal([]byte(lastApplied), lastAppliedObj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration.go

    limitations under the License.
    */
    
    package ensurer
    
    import (
    	flowcontrolv1 "k8s.io/api/flowcontrol/v1"
    	"k8s.io/apimachinery/pkg/api/equality"
    	flowcontrolclient "k8s.io/client-go/kubernetes/typed/flowcontrol/v1"
    	flowcontrollisters "k8s.io/client-go/listers/flowcontrol/v1"
    	flowcontrolapisv1 "k8s.io/kubernetes/pkg/apis/flowcontrol/v1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    	"fmt"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	clientset "k8s.io/client-go/kubernetes"
    	coordinationv1 "k8s.io/client-go/kubernetes/typed/coordination/v1"
    	corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    	restclient "k8s.io/client-go/rest"
    )
    
    const (
    	LeaderElectionRecordAnnotationKey = "control-plane.alpha.kubernetes.io/leader"
    	EndpointsResourceLock             = "endpoints"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command, new String[] {'FOOBAR=foobar'}])", "", "foobar"],
                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null as String[])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. test/makemap.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Ensure that typed non-integer, negative and too large
    // values are not accepted as size argument in make for
    // maps.
    
    package main
    
    type T map[int]int
    
    var sink T
    
    func main() {
    	sink = make(T, -1)            // ERROR "negative size argument in make.*|must not be negative"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 00:41:01 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. src/structs/hostlayout.go

    type HostLayout struct {
    	_ hostLayout // prevent accidental conversion with plain struct{}
    }
    
    // We use an unexported type within the exported type to give the marker
    // type itself, rather than merely its name, a recognizable identity in
    // the type system. The main consequence of this is that a user can give
    // the type a new name and it will still have the same properties, e.g.,
    //
    //	type HL structs.HostLayout
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top