Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 176 for Devices (0.14 sec)

  1. pkg/kubelet/pod_workers.go

    	// without error. Once this method exits with no error other components are allowed to tear down
    	// supporting resources like volumes and devices. If the context is canceled, the method should
    	// return context.Canceled unless it has successfully finished, which may occur when a shorter
    	// grace period is detected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/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: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    				buildServiceInstance(services[0], "12.11.11.11"),
    			},
    			services:                  []*model.Service{svc},
    			numListenersOnServicePort: 3,
    		},
    		{
    			name:                      "no listeners for empty services",
    			instances:                 []*model.ServiceInstance{},
    			services:                  []*model.Service{svc},
    			numListenersOnServicePort: 0,
    		},
    		{
    			name: "no listeners for DNS instance",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    					"kotlin-dsl-integ-tests",
    					"snapshots",
    					"platform-jvm",
    					"build-cache-spi",
    					"internal-integ-testing",
    					"jvm-services",
    					"publish",
    					"problems-api",
    					"process-services",
    					"build-configuration",
    					"base-services"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"scala",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %outputs_8 =  "tf.Const"() {device = "", value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %outputs_10 =  "tf.Const"() {device = "", value = dense<256> : tensor<i32>} : () -> tensor<i32>
      %outputs_12 =  "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            private final List<Service> providers;
    
            public CollectionService(Type typeArg, List<Object> services, List<Service> providers) {
                this.typeArg = typeArg;
                this.services = services;
                this.providers = providers;
            }
    
            @Override
            public String getDisplayName() {
                return "services with type " + typeArg;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      %1 = "tfl.mul"(%0, %arg2) {tac.device = "GPU", fused_activation_function = "RELU6", tac.inference_type = "FLOAT"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      %2 = "tfl.add"(%arg0, %arg3) {tac.device = "GPU", fused_activation_function = "RELU6", tac.inference_type = "FLOAT"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            final List<TestService> services
    
            ServiceWithMultipleDependencies(List<TestService> services) {
                this.services = services
            }
        }
    
        private static class ServiceWithWildCardDependencies {
            final List<?> services
    
            ServiceWithWildCardDependencies(List<? extends TestService> services) {
                this.services = services
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    			if sidecarConfig == nil {
    				services := sidecarScope.EgressListeners[0].services
    				if !reflect.DeepEqual(services, sidecarScope.services) {
    					t.Errorf("services in default egress listener not equals sidecar scope services: %v",
    						cmp.Diff(services, sidecarScope.services, cmpopts.IgnoreFields(AddressMap{}, "mutex")))
    				}
    			}
    
    			for _, s1 := range sidecarScope.services {
    				serviceFound = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute_test.go

    			},
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			// ensure services are ordered
    			t0 := time.Now()
    			for _, svc := range tt.services {
    				svc.CreationTime = t0
    				t0 = t0.Add(time.Minute)
    			}
    			cg := NewConfigGenTest(t, TestOptions{
    				Services: tt.services,
    				Configs:  tt.config,
    			})
    
    			vHostCache := make(map[int][]*route.VirtualHost)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top