Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 720 for typed (0.18 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/ModuleExclusions.java

                IvyArtifactName artifact = rule.getArtifact();
                boolean anyOrganisation = isWildcard(moduleId.getGroup());
                boolean anyModule = isWildcard(moduleId.getName());
    
                // Build a strongly typed (mergeable) exclude spec for each supplied rule
                if (artifact == null) {
                    if (!anyOrganisation && !anyModule) {
                        return factory.moduleId(moduleId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/build_xla_ops_pass.cc

      bool print_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool check_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool check_output_numerics;
    };
    
    void MoveOutgoingEdges(Graph* g, Node* old_node, Node* new_node) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    // and map[string]interface representation.
    type UnstructuredConverter interface {
    	ToUnstructured(obj interface{}) (map[string]interface{}, error)
    	FromUnstructured(u map[string]interface{}, obj interface{}) error
    }
    
    type structField struct {
    	structType reflect.Type
    	field      int
    }
    
    type fieldInfo struct {
    	name      string
    	nameValue reflect.Value
    	omitempty bool
    }
    
    type fieldsCacheMap map[structField]*fieldInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top