Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 297 for Api (0.28 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    	"strings"
    	"time"
    
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/util/slice"
    
    	v1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    	proto.RegisterType((*VolumeAttachmentSpec)(nil), "k8s.io.api.storage.v1alpha1.VolumeAttachmentSpec")
    	proto.RegisterType((*VolumeAttachmentStatus)(nil), "k8s.io.api.storage.v1alpha1.VolumeAttachmentStatus")
    	proto.RegisterMapType((map[string]string)(nil), "k8s.io.api.storage.v1alpha1.VolumeAttachmentStatus.AttachmentMetadataEntry")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    	}
    	if endPort != 0 {
    		r.EndPort = utilpointer.Int32(endPort)
    	}
    	return r
    }
    
    func TestValidateNetworkPolicy(t *testing.T) {
    	protocolTCP := api.ProtocolTCP
    	protocolUDP := api.ProtocolUDP
    	protocolICMP := api.Protocol("ICMP")
    	protocolSCTP := api.ProtocolSCTP
    
    	// Tweaks used below.
    	setIngressEmptyFirstElement := func(networkPolicy *networking.NetworkPolicy) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    	proto.RegisterType((*TokenRequestSpec)(nil), "k8s.io.api.authentication.v1.TokenRequestSpec")
    	proto.RegisterType((*TokenRequestStatus)(nil), "k8s.io.api.authentication.v1.TokenRequestStatus")
    	proto.RegisterType((*TokenReview)(nil), "k8s.io.api.authentication.v1.TokenReview")
    	proto.RegisterType((*TokenReviewSpec)(nil), "k8s.io.api.authentication.v1.TokenReviewSpec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    	proto.RegisterType((*Endpoint)(nil), "k8s.io.api.discovery.v1beta1.Endpoint")
    	proto.RegisterMapType((map[string]string)(nil), "k8s.io.api.discovery.v1beta1.Endpoint.TopologyEntry")
    	proto.RegisterType((*EndpointConditions)(nil), "k8s.io.api.discovery.v1beta1.EndpointConditions")
    	proto.RegisterType((*EndpointHints)(nil), "k8s.io.api.discovery.v1beta1.EndpointHints")
    	proto.RegisterType((*EndpointPort)(nil), "k8s.io.api.discovery.v1beta1.EndpointPort")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    	eventBroadcaster.StartStructuredLogging(3)
    	if kubeDeps.EventClient != nil {
    		klog.V(4).InfoS("Sending events to api server")
    		eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: kubeDeps.EventClient.Events("")})
    	} else {
    		klog.InfoS("No api server defined - no events will be sent to API server")
    	}
    }
    
    func getReservedCPUs(machineInfo *cadvisorapi.MachineInfo, cpus string) (cpuset.CPUSet, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // C API for TensorFlow.
    //
    // The API leans towards simplicity and uniformity instead of convenience
    // since most usage will be by language specific wrappers.
    //
    // Conventions:
    // * We use the prefix TF_ for everything in the API.
    // * Objects are always passed around as pointers to opaque structs
    //   and these structs are allocated/deallocated via the API.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

    ## Highlights
    
    * Authorization:
      * **Alpha** RBAC authorization API group
    * Federation
      * federation api group is now **beta**
      * Services from all federated clusters are now registered in Cloud DNS (AWS and GCP).
    * Stateful Apps:
      * **alpha** PetSets manage stateful apps
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  9. configure.py

              (android_ndk_home_path, ndk_version, _SUPPORTED_ANDROID_NDK_VERSIONS))
      write_action_env_to_bazelrc('ANDROID_NDK_VERSION', ndk_version)
    
      # Now grab the NDK API level to use. Note that this is different from the
      # SDK API level, as the NDK API level is effectively the *min* target SDK
      # version.
      meta = open(os.path.join(android_ndk_home_path, 'meta/platforms.json'))
      platforms = json.load(meta)
      meta.close()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  10. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    	proto.RegisterType((*CertificateSigningRequestCondition)(nil), "k8s.io.api.certificates.v1.CertificateSigningRequestCondition")
    	proto.RegisterType((*CertificateSigningRequestList)(nil), "k8s.io.api.certificates.v1.CertificateSigningRequestList")
    	proto.RegisterType((*CertificateSigningRequestSpec)(nil), "k8s.io.api.certificates.v1.CertificateSigningRequestSpec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top