Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for Devices (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    module {
      func.func @conv_with_int_per_layer(%arg0: tensor<*xf32>) -> tensor<*xf32> {
        %cst = "tf.Const"() {device = "", value = dense<[-0.0192535277, -5.998660e-03]> : tensor<2xf32>} : () -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    	// Port is the listener port for outbound sidecar (e.g. service port)
    	Port int
    
    	// Services are the Services from the registry. Each service
    	// in this list should have a virtual host entry
    	Services []*model.Service
    
    	// VirtualServiceHosts is a list of hosts defined in the virtual service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            }
    
            services = serviceRegistryFactory.createFor(this);
            taskContainer = services.get(TaskContainerInternal.class);
    
            extensibleDynamicObject = new ExtensibleDynamicObject(this, Project.class, services.get(InstantiatorFactory.class).decorateLenient(services));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

    import org.apache.maven.api.services.ModelResolver;
    import org.apache.maven.api.services.ModelResolverException;
    import org.apache.maven.api.services.ModelSource;
    import org.apache.maven.api.services.ModelTransformer;
    import org.apache.maven.api.services.ModelTransformerContext;
    import org.apache.maven.api.services.ModelTransformerContextBuilder;
    import org.apache.maven.api.services.ModelTransformerException;
    import org.apache.maven.api.services.Source;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      %0 = "tf.MatMul"(%arg0, %arg0) {device = "", transpose_a = false, transpose_b = false} : (tensor<10x10xi32>, tensor<10x10xi32>) -> tensor<10x10xi32>
      %1 = "tf.MatMul"(%arg0, %arg0) {device = "", transpose_a = false, transpose_b = false} : (tensor<10x10xi32>, tensor<10x10xi32>) -> tensor<10x10xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
      repeated string ipFamilies = 29;
    
      // Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
      // are PreferDualStack, RequireDualStack, and SingleStack.
      // More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
      string ipFamilyPolicy = 30;
      // Next available 31.
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    
    	nodeName := types.NodeName("node-name")
    	devicePath := "fake/device/path"
    
    	// Act
    	logger, _ := ktesting.NewTestContext(t)
    	generatedVolumeName, err := asw.AddVolumeNode(logger, volumeName, volumeSpec, nodeName, devicePath, true)
    
    	// Assert
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    	// individual http services in that port
    	if cur, exists := listenerMap[listenerMapKey]; exists {
    		currentListenerEntry = cur
    		// NOTE: This is not a conflict. This is simply filtering the
    		// services for a given listener explicitly.
    		// When the user declares their own ports in Sidecar.egress
    		// with some specific services on those ports, we should not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top