Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 724 for typed (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	},
    }
    
    const (
    	embeddedResourceSchema = `
    type: object
    properties:
      embedded:
        type: object
        x-kubernetes-embedded-resource: true
        x-kubernetes-preserve-unknown-fields: true
      noEmbeddedObject:
        type: object
        x-kubernetes-preserve-unknown-fields: true
      embeddedNested:
        type: object
        x-kubernetes-embedded-resource: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/base/tests/tensor_types_test_util.h

    namespace tensorflow {
    
    // Each of the following struct types have two members: a kDType that
    // corresponds to a TF_Datatype enum value, and a typedef "type"
    // of its corresponding C++ type. These types allow us to write Dtype-agnostic
    // tests via GoogleTest's TypedTests:
    // https://github.com/google/googletest/blob/e589a337170554c48bc658cc857cf15080c9eacc/googletest/docs/advanced.md#typed-tests
    struct FloatType {
      using type = float;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command, new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null, null as File)", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null, null)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    )
    
    // TypeConverter allows you to convert from runtime.Object to
    // typed.TypedValue and the other way around.
    type TypeConverter = internal.TypeConverter
    
    // NewDeducedTypeConverter creates a TypeConverter for CRDs that don't
    // have a schema. It does implement the same interface though (and
    // create the same types of objects), so that everything can still work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. istioctl/pkg/cli/context.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/ptr"
    )
    
    type Context interface {
    	// CLIClient returns a client for the default revision
    	CLIClient() (kube.CLIClient, error)
    	// CLIClientWithRevision returns a client for the given revision
    	CLIClientWithRevision(rev string) (kube.CLIClient, error)
    	// InferPodInfoFromTypedResource returns the pod name and namespace for the given typed resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. pkg/kube/kclient/events.go

    package kclient
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/klog/v2"
    
    	"istio.io/istio/pkg/kube"
    )
    
    type EventRecorder struct {
    	eventRecorder    record.EventRecorder
    	eventBroadcaster record.EventBroadcaster
    }
    
    // NewEventRecorder creates a new EventRecorder.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 22:23:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top