Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for Fermat (0.9 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      std::vector<mlir::TFL::DimensionMetadataAttr> dim_metadata(dim_metadata_size);
      for (int i = 0; i < dim_metadata_size; i++) {
        if (tensor.sparsity->dim_metadata[i]->format ==
            tflite::DimensionType_DENSE) {
          dim_metadata[i] = tfl::DimensionMetadataAttr::get(
              builder.getContext(),
              mlir::TFL::DimensionTypeAttr::get(builder.getContext(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    // RUN: tf-opt -tfl-prepare-tf %s | FileCheck %s
    // RUN: tf-opt %s -tf-layout-optimization=force-data-format=NHWC -tfl-prepare-tf  | FileCheck --check-prefix=LAYOUT --dump-input=always %s
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	vs := &istio.HTTPRoute{}
    	// Auto-name the route. If upstream defines an explicit name, will use it instead
    	// The position within the route is unique
    	vs.Name = obj.Namespace + "." + obj.Name + "." + strconv.Itoa(pos) // format: %s.%s.%d
    
    	for _, match := range r.Matches {
    		uri, err := createURIMatch(match)
    		if err != nil {
    			return nil, err
    		}
    		headers, err := createHeadersMatch(match)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    // that there is a workload behind a gateway, and rely on the gateway to handle the rest.
    // In this case, the key format will be "resource-uid". The resource can be a Pod, WorkloadEntry, etc.
    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	// ":authority" pseudo-header field.
    	// It may be of the form "host:port". For international domain
    	// names, Host may be in Punycode or Unicode form. Use
    	// golang.org/x/net/idna to convert it to either format if
    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            String version = parent.getVersion();
    
            ModelResolver modelResolver = getModelResolver(request);
            Objects.requireNonNull(
                    modelResolver,
                    String.format(
                            "request.modelResolver cannot be null (parent POM %s and POM %s)",
                            ModelProblemUtils.toId(groupId, artifactId, version),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		cmd := exec.Command(gorootBinGo, "list")
    		if t.short {
    			// In short test mode, use a format string to only
    			// list packages and commands that have tests.
    			const format = "{{if (or .TestGoFiles .XTestGoFiles)}}{{.ImportPath}}{{end}}"
    			cmd.Args = append(cmd.Args, "-f", format)
    		}
    		if t.race {
    			cmd.Args = append(cmd.Args, "-tags=race")
    		}
    		cmd.Args = append(cmd.Args, "std", "cmd")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            String version = parent.getVersion();
    
            ModelResolver modelResolver = request.getModelResolver();
            Objects.requireNonNull(
                    modelResolver,
                    String.format(
                            "request.modelResolver cannot be null (parent POM %s and POM %s)",
                            ModelProblemUtils.toId(groupId, artifactId, version),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				},
    			},
    		},
    		Status: corev1.NodeStatus{
    			Allocatable: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Capacity: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Images: []corev1.ContainerImage{
    				{
    					Names: []string{"test"},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    				t.Errorf("Bad %v entry, expect:\n%v\ngot:\n%v", test.name, test.re, prof)
    			}
    		}
    	})
    
    	t.Run("proto", func(t *testing.T) {
    		// proto format
    		var w bytes.Buffer
    		Lookup("block").WriteTo(&w, 0)
    		p, err := profile.Parse(&w)
    		if err != nil {
    			t.Fatalf("failed to parse profile: %v", err)
    		}
    		t.Logf("parsed proto: %s", p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top