Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 618 for compacting (0.25 sec)

  1. tensorflow/c/eager/immediate_execution_tensor_handle.cc

      std::string shape_string;
      if (Shape(&shape).ok()) {
        shape_string = shape.DebugString();
      } else {
        shape_string = "<error computing shape>";
      }
      std::string value_string;
      if (!SummarizeValue(value_string).ok()) {
        value_string = "<error computing value>";
      }
      if (value_string.length() > 100) {
        // The default NumPy-style output can be distractingly long in error
        // messages.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/PathUtil.java

     *
     * There are methods for checking equality and for comparing two paths.
     * All methods for equality and comparing need to be called with the correct case-sensitivity according to the underlying file system.
     *
     * A segment of a path is the part between two file separators.
     * For example, the path some/long/path has the segments some, long and path.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. pkg/kube/krt/README.md

    Example computing a list of all container names across all pods:
    
    ```go
    ContainerNames := krt.NewManyCollection[string](func(ctx krt.HandlerContext, pod *v1.Pod) (res []string) {
        for _, c := range pod.Spec.Containers {
          res = append(res, c.Name)
        }
        return res
    }) // Results in a Collection[string]
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact_test.go

    	}
    
    	// Compact first. It would do the compaction and return compact time which is incremented by 1.
    	curTime, _, err := compact(ctx, client, 0, putResp.Header.Revision)
    	if err != nil {
    		t.Fatalf("compact failed: %v", err)
    	}
    	if curTime != 1 {
    		t.Errorf("Expect current logical time = 1, get = %v", curTime)
    	}
    
    	// Compact again with the same parameters. It won't do compaction but return the latest compact time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 14:22:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                    if (res != null && !res.isEmpty()) {
                        List<Binding<Q>> bindingList = new ArrayList<>(res);
                        Comparator<Binding<Q>> comparing = Comparator.comparing(Binding::getPriority);
                        bindingList.sort(comparing.reversed());
                        Binding<Q> binding = bindingList.get(0);
                        return compile(binding);
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. docs/en/docs/benchmarks.md

        * If you are comparing Uvicorn, compare it against Daphne, Hypercorn, uWSGI, etc. Application servers.
    * **Starlette**:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			otherSize := actualSize(args[1])
    
    			// This is the base cost of comparing two byte lists.
    			// We will compare only up to the length of the CIDR prefix in bytes, so use the cidrSize twice.
    			cost := uint64(math.Ceil(float64(cidrSize+cidrSize) * common.StringTraversalCostFactor))
    
    			if overloadId == "cidr_contains_ip_string" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractProjectAccessorsSourceGenerator.java

    import com.google.common.base.Splitter;
    import org.gradle.api.initialization.ProjectDescriptor;
    
    import java.io.IOException;
    import java.io.Writer;
    import java.util.stream.Collectors;
    
    import static java.util.Comparator.comparing;
    
    public class AbstractProjectAccessorsSourceGenerator extends AbstractSourceGenerator {
        public AbstractProjectAccessorsSourceGenerator(Writer writer) {
            super(writer);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/BinaryDiffUtils.groovy

            int[] newcost = new int[len0];
    
            // initial cost of skipping prefix in byte[] s0
            for (int i = 0; i < len0; i++) {
                cost[i] = i
            }
    
            // dynamically computing the array of distances
    
            // transformation cost for each letter in s1
            for (int j = 1; j < len1; j++) {
                // initial cost of skipping prefix in byte[] s1
                newcost[0] = j;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 14 11:47:34 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // This field must only be set by the entity completing the attach
      // operation, i.e. the external-attacher.
      optional bool attached = 1;
    
      // attachmentMetadata is populated with any
      // information returned by the attach operation, upon successful attach, that must be passed
      // into subsequent WaitForAttach or Mount calls.
      // This field must only be set by the entity completing the attach
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top