Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 176 for Devices (0.11 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		ctl.workloadInstanceHandler(wi, model.EventAdd) // simulate adding a workload entry
    	}
    
    	// get service object
    	svcs := ctl.Services()
    	if len(svcs) != 1 {
    		t.Fatalf("failed to get services (%v)", svcs)
    	}
    
    	endpoints := GetEndpoints(svcs[0], ctl.Endpoints)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    func sortServices(services []*model.Service) {
    	sort.Slice(services, func(i, j int) bool { return services[i].Hostname < services[j].Hostname })
    	for _, service := range services {
    		sortPorts(service.Ports)
    	}
    }
    
    func sortServiceTargets(instances []model.ServiceTarget) {
    	sort.Slice(instances, func(i, j int) bool {
    		if instances[i].Service.Hostname == instances[j].Service.Hostname {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    		name      string
    		configs   []config.Config
    		services  []*model.Service
    		instances []*model.ServiceInstance
    		// Assertions
    		clusters                  map[string][]string
    		telemetry                 map[string][]string
    		proxy                     *model.Proxy
    		disableInboundPassthrough bool
    	}{
    		// Proxy 1.8.1+ tests
    		{name: "empty"},
    		{name: "empty service", services: []*model.Service{service}},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.apache.maven.api.model.*;
    import org.apache.maven.api.services.ModelBuilder;
    import org.apache.maven.api.services.ModelBuilderException;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelBuilderResult;
    import org.apache.maven.api.services.ModelCache;
    import org.apache.maven.api.services.ModelProblem;
    import org.apache.maven.api.services.ModelResolver;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			arg:      "all",
    			expected: "pods,replicationcontrollers,services,statefulsets.apps,horizontalpodautoscalers.autoscaling,jobs.batch,cronjobs.batch,daemonsets.extensions,deployments.extensions,replicasets.extensions",
    		},
    		{
    			name:     "alias-in-comma-separated-arg",
    			arg:      "all,secrets",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    // localServiceDiscovery is an in-memory ServiceDiscovery with mock services
    type localServiceDiscovery struct {
    	services         []*Service
    	serviceInstances []*ServiceInstance
    
    	NoopAmbientIndexes
    	NetworkGatewaysHandler
    }
    
    var _ ServiceDiscovery = &localServiceDiscovery{}
    
    func (l *localServiceDiscovery) Services() []*Service {
    	return l.services
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            groovyFile(file("plugin1/build.gradle"), "plugins { id 'groovy-gradle-plugin' }")
            groovyFile(file("plugin1/src/main/groovy/my.plugin1.gradle"), """
                import org.gradle.api.services.BuildService
                import org.gradle.api.services.BuildServiceParameters
                abstract class MyService implements BuildService<BuildServiceParameters.None> {
                    String hello(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	utilexec "k8s.io/utils/exec"
    )
    
    const (
    	// the services chain
    	kubeServicesChain utiliptables.Chain = "KUBE-SERVICES"
    
    	// the external services chain
    	kubeExternalServicesChain utiliptables.Chain = "KUBE-EXTERNAL-SERVICES"
    
    	// the nodeports chain
    	kubeNodePortsChain utiliptables.Chain = "KUBE-NODEPORTS"
    
    	// the kubernetes postrouting chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	// Update service healthchecks.  The endpoints list might include services that are
    	// not "OnlyLocal", but the services list will not, and the serviceHealthServer
    	// will just drop those endpoints.
    	if err := proxier.serviceHealthServer.SyncServices(proxier.svcPortMap.HealthCheckNodePorts()); err != nil {
    		proxier.logger.Error(err, "Error syncing healthcheck services")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    // RUN: tf-opt %s -tf-device-decompose-resource-ops | FileCheck -check-prefixes=CHECK,ALWAYS-DECOMPOSE %s
    // RUN: tf-opt %s -tf-device-decompose-resource-ops-in-cluster | FileCheck -check-prefixes=CHECK,CLUSTER-ONLY %s
    
    // Tests different behavior of two passes if the op is outside cluster
    // tf-device-decompose-resource-ops would always decompose the resource op.
    // tf-device-decompose-resource-ops-in-cluster would not decompose ops outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top