Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for externalapi (0.14 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. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load.go

    import (
    	"fmt"
    	"io"
    	"os"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	api "k8s.io/apiserver/pkg/apis/apiserver"
    	"k8s.io/apiserver/pkg/apis/apiserver/install"
    	externalapi "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1"
    )
    
    var (
    	scheme = runtime.NewScheme()
    	codecs = serializer.NewCodecFactory(scheme, serializer.EnableStrict)
    )
    
    func init() {
    	install.Install(scheme)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. pkg/api/service/warnings.go

    			warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("clusterIPs").Index(i), clusterIP)...)
    		}
    	}
    
    	for i, externalIP := range service.Spec.ExternalIPs {
    		warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("externalIPs").Index(i), externalIP)...)
    	}
    
    	if len(service.Spec.LoadBalancerIP) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/proxy/conntrack/cleanup.go

    			}
    			for _, extIP := range svcInfo.ExternalIPs() {
    				err := ct.ClearEntriesForNAT(extIP.String(), endpointIP, v1.ProtocolUDP)
    				if err != nil {
    					klog.ErrorS(err, "Failed to delete endpoint connections for externalIP", "servicePortName", epSvcPair.ServicePortName, "externalIP", extIP)
    				}
    			}
    			for _, lbIP := range svcInfo.LoadBalancerVIPs() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. plugin/pkg/admission/network/denyserviceexternalips/admission_test.go

    		fail   bool
    	}{{
    		name:   "create: without externalIPs",
    		newSvc: makeSvc(),
    	}, {
    		name:   "create: with externalIPs",
    		newSvc: makeSvc("1.1.1.1"),
    		fail:   true,
    	}, {
    		name:   "update: same externalIPs",
    		newSvc: makeSvc("1.1.1.1", "2.2.2.2"),
    		oldSvc: makeSvc("1.1.1.1", "2.2.2.2"),
    	}, {
    		name:   "update: reorder externalIPs",
    		newSvc: makeSvc("1.1.1.1", "2.2.2.2"),
    		oldSvc: makeSvc("2.2.2.2", "1.1.1.1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 05:36:44 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/validation/validation_test.go

    import (
    	"testing"
    
    	api "k8s.io/kubernetes/pkg/apis/core"
    	internalapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    )
    
    func TestValidateConfiguration(t *testing.T) {
    
    	tests := []struct {
    		config     internalapi.Configuration
    		testName   string
    		testStatus bool
    	}{{
    		config: internalapi.Configuration{
    			Default: []api.Toleration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. helm/minio/templates/service.yaml

          nodePort: {{ .Values.service.nodePort }}
          {{- else }}
          targetPort: {{ .Values.minioAPIPort }}
          {{- end }}
      {{- if .Values.service.externalIPs }}
      externalIPs:
        {{- range $i , $ip := .Values.service.externalIPs }}
        - {{ $ip }}
        {{- end }}
      {{- end }}
      selector:
        app: {{ template "minio.name" . }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. manifests/charts/gateway/templates/service.yaml

        targetPort: 15012
      - name: tls-webhook
        port: 15017
        targetPort: 15017
    {{- else }}
    {{ .Values.service.ports | toYaml | indent 4 }}
    {{- end }}
    {{- if .Values.service.externalIPs }}
      externalIPs: {{- range .Values.service.externalIPs }}
        - {{.}}
      {{- end }}
    {{- end }}
      selector:
        {{- include "gateway.selectorLabels" . | nindent 4 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 16:55:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. plugin/pkg/admission/network/denyserviceexternalips/admission.go

    		return nil
    	}
    
    	klog.V(4).Infof("Denying new use of ExternalIPs on Service %s/%s", newSvc.Namespace, newSvc.Name)
    	return admission.NewForbidden(attr, fmt.Errorf("Use of external IPs is denied by admission control"))
    }
    
    func isSubset(newSvc, oldSvc *core.Service) bool {
    	// If new has none, it's a subset.
    	if len(newSvc.Spec.ExternalIPs) == 0 {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 29 18:00:11 UTC 2020
    - 3.2K bytes
    - Viewed (0)
Back to top