Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 428 for typed (0.39 sec)

  1. security/pkg/k8s/controller/casecret.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    
    	"istio.io/istio/pkg/log"
    )
    
    var k8sControllerLog = log.RegisterScope("secretcontroller", "Citadel kubernetes controller log")
    
    // CaSecretController manages the self-signed signing CA secret.
    type CaSecretController struct {
    	client corev1.CoreV1Interface
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/endpointsadapter.go

    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	discoveryclient "k8s.io/client-go/kubernetes/typed/discovery/v1"
    	utilnet "k8s.io/utils/net"
    )
    
    // EndpointsAdapter provides a simple interface for reading and writing both
    // Endpoints and Endpoint Slices.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. src/runtime/metrics/sample.go

    //
    // Note that re-use has some caveats. Notably, Values should not be read or
    // manipulated while a Read with that value is outstanding; that is a data race.
    // This property includes pointer-typed Values (for example, [Float64Histogram])
    // whose underlying storage will be reused by Read when possible. To safely use
    // such values in a concurrent setting, all data must be deep-copied.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/util/AttributeTestUtil.groovy

            return new DefaultImmutableAttributesFactory(SnapshotTestUtil.isolatableFactory(), TestUtil.objectInstantiator())
        }
    
        /**
         * Creates an attribute set that can contain only JDK-typed {@link Attribute} values.
         *
         * The type of the attribute is derived by the class of the value.
         *
         * Use {@link #attributesTyped(Map)} to create an attribute set with more specific attribute values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 19 07:03:42 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	"k8s.io/apiserver/plugin/pkg/authorizer/webhook"
    	authorizationclient "k8s.io/client-go/kubernetes/typed/authorization/v1"
    )
    
    // DelegatingAuthorizerConfig is the minimal configuration needed to create an authorizer
    // built to delegate authorization to a kube API server
    type DelegatingAuthorizerConfig struct {
    	SubjectAccessReviewClient authorizationclient.AuthorizationV1Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "command.execute((String[]) null, null)", "", ""],
                [fromString(), "command.execute(null, (File) null)", "", ""],
                [fromString(), "command.execute((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
    - 3.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/stripmeta.go

    	if err != nil {
    		return nil, nil, err
    	}
    	f.stripFields(managed.Fields(), manager)
    	return newObj, managed, nil
    }
    
    // stripFields removes a predefined set of paths found in typed from managed
    func (f *stripMetaManager) stripFields(managed fieldpath.ManagedFields, manager string) {
    	vs, ok := managed[manager]
    	if ok {
    		if vs == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    std::unique_ptr<Pass> createOptimizePass();
    
    // Creates a pass that finds quantization patterns and compose them to uniform
    // quantized types.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateComposeUniformQuantizedTypePass();
    
    // Creates a pass that finds stablehlo ops that accept or produce uniform
    // quantized typed tensors and converts them to equivalent ops in the TFLite
    // dialect.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. docs/en/docs/js/termynal.js

                const type = line.getAttribute(this.pfx);
                const delay = line.getAttribute(`${this.pfx}-delay`) || this.lineDelay;
    
                if (type == 'input') {
                    line.setAttribute(`${this.pfx}-cursor`, this.cursor);
                    await this.type(line);
                    await this._wait(delay);
                }
    
                else if (type == 'progress') {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. 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)
Back to top