Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for externalapi (0.38 sec)

  1. subprojects/public-api/build.gradle.kts

        // Groovy is part of our API
        externalApi(libs.groovy)
        // Required to inject services into tasks and other objects
        externalApi(libs.inject)
        // Moslty used for nullability annotations
        externalApi(libs.jsr305)
        // We use this to annotate type parameters as @Nullable
        externalApi(libs.jetbrainsAnnotations)
        // SLF4J logging is part of our public API
        externalApi(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

    // that the public API depends on.
    // TODO: We should be able to derive these dependencies automatically.
    //       In fact, our public API should have no external dependencies.
    val externalApi = configurations.dependencyScope("externalApi") {
        description = "External dependencies that the public Gradle API depends on"
    }
    val externalRuntimeOnly = configurations.dependencyScope("externalRuntimeOnly") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/kubemark/hollow_kubelet.go

    	flags *options.KubeletFlags,
    	config *kubeletconfig.KubeletConfiguration,
    	client *clientset.Clientset,
    	heartbeatClient *clientset.Clientset,
    	cadvisorInterface cadvisor.Interface,
    	imageService internalapi.ImageManagerService,
    	runtimeService internalapi.RuntimeService,
    	containerManager cm.ContainerManager) *HollowKubelet {
    	d := &kubelet.Dependencies{
    		KubeClient:                client,
    		HeartbeatClient:           heartbeatClient,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    				Comment: &svcPortNameString,
    			})
    		}
    
    		// Capture externalIPs.
    		for _, externalIP := range svcInfo.ExternalIPs() {
    			if hasEndpoints {
    				// Send traffic bound for external IPs to the "external
    				// destinations" chain.
    				tx.Add(&knftables.Element{
    					Map: serviceIPsMap,
    					Key: []string{
    						externalIP.String(),
    						protocol,
    						strconv.Itoa(svcInfo.Port()),
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. manifests/charts/gateway/values.yaml

          targetPort: 80
        - name: https
          port: 443
          protocol: TCP
          targetPort: 443
        annotations: {}
        loadBalancerIP: ""
        loadBalancerSourceRanges: []
        externalTrafficPolicy: ""
        externalIPs: []
        ipFamilyPolicy: ""
        ipFamilies: []
        ## Whether to automatically allocate NodePorts (only for LoadBalancers).
        # allocateLoadBalancerNodePorts: false
    
      resources:
        requests:
          cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // containerGC is the manager of garbage collection.
    type containerGC struct {
    	client           internalapi.RuntimeService
    	manager          *kubeGenericRuntimeManager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	switch svc.Spec.Type {
    	case api.ServiceTypeClusterIP:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeNodePort:
    		if len(svc.Spec.ExternalIPs) > 0 {
    			return strings.Join(svc.Spec.ExternalIPs, ",")
    		}
    		return "<none>"
    	case api.ServiceTypeLoadBalancer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

      fi
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        params+=" $(gke-kube-apiserver-internal-sni-param)"
      fi
      params+=" --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname"
      if [[ -s "${REQUESTHEADER_CA_CERT_PATH:-}" ]]; then
        params+=" --requestheader-client-ca-file=${REQUESTHEADER_CA_CERT_PATH}"
        params+=" --requestheader-allowed-names=aggregator"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    		{
    			// Test LoadBalancer service with mul ExternalIPs
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test6"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeLoadBalancer,
    					Ports: []api.ServicePort{
    						{
    							Protocol: "tcp",
    							Port:     8888,
    						},
    					},
    					ClusterIPs:  []string{"10.9.8.7"},
    					ExternalIPs: mulExternalIP,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	VolumePlugins             []volume.VolumePlugin
    	DynamicPluginProber       volume.DynamicPluginProber
    	TLSOptions                *server.TLSOptions
    	RemoteRuntimeService      internalapi.RuntimeService
    	RemoteImageService        internalapi.ImageManagerService
    	PodStartupLatencyTracker  util.PodStartupLatencyTracker
    	NodeStartupLatencyTracker util.NodeStartupLatencyTracker
    	// remove it after cadvisor.UsingLegacyCadvisorStats dropped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top