Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 720 for typed (0.51 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3QualifiedStaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "ProcessGroovyMethods.execute(command, (String[]) null, null)", "", ""],
                [fromString(), "ProcessGroovyMethods.execute(command, null, (File) null)", "", ""],
                [fromString(), "ProcessGroovyMethods.execute(command, (String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/autoscaling.go

    	"k8s.io/kubernetes/cmd/kube-controller-manager/names"
    	"k8s.io/kubernetes/pkg/controller/podautoscaler"
    	"k8s.io/kubernetes/pkg/controller/podautoscaler/metrics"
    
    	resourceclient "k8s.io/metrics/pkg/client/clientset/versioned/typed/metrics/v1beta1"
    	"k8s.io/metrics/pkg/client/custom_metrics"
    	"k8s.io/metrics/pkg/client/external_metrics"
    )
    
    func newHorizontalPodAutoscalerControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 01:37:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/proxy/kubemark/hollow_proxy.go

    	"k8s.io/apimachinery/pkg/types"
    	clientset "k8s.io/client-go/kubernetes"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/events"
    	proxyapp "k8s.io/kubernetes/cmd/kube-proxy/app"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	proxyconfig "k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/utils/ptr"
    )
    
    type HollowProxy struct {
    	ProxyServer *proxyapp.ProxyServer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/AndSpec.java

            System.arraycopy(thisSpecs, 0, combinedSpecs, 0, thisLength);
            System.arraycopy(specs, 0, combinedSpecs, thisLength, specs.length);
            return new AndSpec<T>(combinedSpecs);
        }
    
        /**
         * Typed and() method for a single {@link Spec}.
         *
         * @since 4.3
         */
        public AndSpec<T> and(Spec<? super T> spec) {
            return and(Cast.<Spec<? super T>[]>uncheckedNonnullCast(new Spec<?>[]{spec}));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

    @TargetVersions("5.0+")
    class StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec extends CrossVersionIntegrationSpec {
    
        @Issue("https://github.com/gradle/gradle/issues/6027")
        def "task can use project.file() from statically typed Groovy"() {
            when:
            def apiDepConf = "implementation"
            if (previous.version < GradleVersion.version("7.0-rc-1")) {
                apiDepConf = "compile"
            }
            def groovyDepConf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

     *      } else if (model instance of Bird) {
     *          // will never be true, Bird is not specified as a model contract type
     *      }
     * </pre>
     *
     * @since 8.9
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE})
    @Incubating
    public @interface ToolingModelContract {
    
        /**
         * Child types of a TAPI model interface (marked by this annotation), which will be
         * handled polymorpically on the TAPI client side.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/is-typed-array": {
          "version": "1.1.10",
          "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
          "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==",
          "dev": true,
          "dependencies": {
            "available-typed-arrays": "^1.0.5",
            "call-bind": "^1.0.2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/convert.go

    	if err != nil {
    		log.Error(err.Error())
    		return ""
    	}
    	return string(b)
    }
    
    // marshalMetadata combines type metadata and untyped metadata and marshals to json
    // This allows passing arbitrary metadata to Envoy, while still supported typed metadata for known types
    func marshalMetadata(metadata *model.BootstrapNodeMetadata, rawMeta map[string]any) (string, error) {
    	b, err := json.Marshal(metadata)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    struct Types {
      typedef internal::Types$n<$for i, [[T$i]]> type;
    };
    
    template <>
    struct Types<$for i, [[internal::None]]> {
      typedef internal::Types0 type;
    };
    
    $range i 1..n-1
    $for i [[
    $range j 1..i
    $range k i+1..n
    template <$for j, [[typename T$j]]>
    struct Types<$for j, [[T$j]]$for k[[, internal::None]]> {
      typedef internal::Types$i<$for j, [[T$j]]> type;
    };
    
    ]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. test/typeparam/list.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // _List is a linked list of ordered values of type T.
    type _List[T Ordered] struct {
    	next *_List[T]
    	val  T
    }
    
    func (l *_List[T]) Largest() T {
    	var max T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top