Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for externalapi (0.2 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. pkg/proxy/serviceport.go

    	// SessionAffinityType returns service session affinity type
    	SessionAffinityType() v1.ServiceAffinity
    	// StickyMaxAgeSeconds returns service max connection age
    	StickyMaxAgeSeconds() int
    	// ExternalIPs returns service ExternalIPs
    	ExternalIPs() []net.IP
    	// LoadBalancerVIPs returns service LoadBalancerIPs which are VIP mode
    	LoadBalancerVIPs() []net.IP
    	// Protocol returns service protocol.
    	Protocol() v1.Protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/workload.go

    				return err
    			}
    			fmt.Printf("Configuration generation into directory %s was successful\n", outputDir)
    			return nil
    		},
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if len(internalIP) > 0 && len(externalIP) > 0 {
    				return fmt.Errorf("the flags --internalIP and --externalIP are mutually exclusive")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    		svcInfo.nodePorthnsID = ""
    	}
    
    	for _, externalIP := range svcInfo.externalIPs {
    		mapStaleLoadbalancer[externalIP.hnsID] = true
    		if err := hns.deleteLoadBalancer(externalIP.hnsID); err != nil {
    			klog.V(1).ErrorS(err, "Error deleting Hns ExternalIP policy resource.", "hnsID", externalIP.hnsID, "IP", externalIP.ip)
    		} else {
    			// On successful delete, remove hnsId
    			externalIP.hnsID = ""
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top