Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 428 for typed (1.06 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/DslObject.java

            if (type.isInstance(delegate)) {
                return type.cast(delegate);
            } else {
                throw new IllegalStateException(
                    String.format("Cannot create DslObject for '%s' (class: %s) as it does not implement '%s' (it is not a DSL object)",
                        delegate, delegate.getClass().getSimpleName(), type.getName())
                );
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractorTest.groovy

            "rawModelMap"              | "Parameter of type ${ModelMap.simpleName} must declare a type parameter extending Task."                                            | "non typed ModelMap parameter"
        }
    
        def "reports multiple problems with rule definition"() {
            def ruleMethod = ruleDefinitionForMethod("multipleProblems")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    )
    
    // TODO: This is almost a exact replica of Endpoints lock.
    // going forwards as we self host more and more components
    // and use ConfigMaps as the means to pass that configuration
    // data we will likely move to deprecate the Endpoints lock.
    
    type ConfigMapLock struct {
    	// ConfigMapMeta should contain a Name and a Namespace of a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/leaselock.go

    	"errors"
    	"fmt"
    
    	coordinationv1 "k8s.io/api/coordination/v1"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	coordinationv1client "k8s.io/client-go/kubernetes/typed/coordination/v1"
    )
    
    type LeaseLock struct {
    	// LeaseMeta should contain a Name and a Namespace of a
    	// LeaseMeta object that the LeaderElector will attempt to lead.
    	LeaseMeta  metav1.ObjectMeta
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 04 16:02:26 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. pkg/controller/validatingadmissionpolicystatus/controller.go

    // Controller is the ValidatingAdmissionPolicy Status controller that reconciles the Status field of each policy object.
    // This controller runs type checks against referred types for each policy definition.
    type Controller struct {
    	policyInformer informerv1.ValidatingAdmissionPolicyInformer
    	policyQueue    workqueue.TypedRateLimitingInterface[string]
    	policySynced   cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    	authenticationclient "k8s.io/client-go/kubernetes/typed/authentication/v1"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    // DelegatingAuthenticatorConfig is the minimal configuration needed to create an authenticator
    // built to delegate authentication to a kube API server
    type DelegatingAuthenticatorConfig struct {
    	Anonymous bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

    #include "tensorflow/c/experimental/ops/gen/common/view_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    string AttrView::VariableName() const { return attr_.name(); }
    
    string AttrView::VariableType() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    	client "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1"
    	informers "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1"
    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    )
    
    // EstablishingController controls how and when CRD is established.
    type EstablishingController struct {
    	crdClient client.CustomResourceDefinitionsGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

        def setup() {
            prepareTaskTypeUsingWorker()
            withRunnableClassInBuildSrc()
            buildFile << """
                task runInWorker(type: WorkerTask)
            """
        }
    
        def "reports typed work item progress events as descendants of tasks"() {
            when:
            def events = runBuild("runInWorker", EnumSet.allOf(OperationType))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/ComponentBinariesModelRuleExtractorTest.groovy

            "rawModelMap"            | "Parameter of type ${ModelMap.simpleName} must declare a type parameter extending BinarySpec."                                                                | "non typed ModelMap parameter"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top