Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Densify (0.31 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    }
    
    // An Op is an ARM opcode.
    type Op uint16
    
    // NOTE: The actual Op values are defined in tables.go.
    // They are chosen to simplify instruction decoding and
    // are not a dense packing from 0 to N, although the
    // density is high, probably at least 90%.
    
    func (op Op) String() string {
    	if op >= Op(len(opstr)) || opstr[op] == "" {
    		return fmt.Sprintf("Op(%d)", int(op))
    	}
    	return opstr[op]
    }
    
    // An Inst is a single instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  2. src/compress/flate/deflatefast.go

    		// scanned (or skipped), look at every third byte, etc.. When a match
    		// is found, immediately go back to looking at every byte. This is a
    		// small loss (~5% performance, ~0.1% density) for compressible data
    		// due to more bookkeeping, but for non-compressible data (such as
    		// JPEG) it's a huge win since the compressor quickly "realizes" the
    		// data is incompressible and doesn't bother looking for matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    slippery: But that part of the Resistance which arises from the _Vis inertiƦ_, is proportional to the Density of the Matter, and cannot be diminish'd by dividing the Matter into smaller Parts, nor by any other means than by decreasing the Density of the Medium. And for these Reasons the Density of fluid Mediums is very nearly proportional to their Resistance. Liquors which differ not much in Density, as Water, Spirit of Wine, Spirit of Turpentine, hot Oil, differ not much in Resistance. Water is thirteen...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. src/testdata/Isaac.Newton-Opticks.txt

    arises from the _Vis inertiƦ_, is proportional to the Density of the
    Matter, and cannot be diminish'd by dividing the Matter into smaller
    Parts, nor by any other means than by decreasing the Density of the
    Medium. And for these Reasons the Density of fluid Mediums is very
    nearly proportional to their Resistance. Liquors which differ not much
    in Density, as Water, Spirit of Wine, Spirit of Turpentine, hot Oil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    // during memory allocation) further ensures that chunks it identifies as "dense" are
    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    // An Op is an ARM64 opcode.
    type Op uint16
    
    // NOTE: The actual Op values are defined in tables.go.
    // They are chosen to simplify instruction decoding and
    // are not a dense packing from 0 to N, although the
    // density is high, probably at least 90%.
    
    func (op Op) String() string {
    	if op >= Op(len(opstr)) || opstr[op] == "" {
    		return fmt.Sprintf("Op(%d)", int(op))
    	}
    	return opstr[op]
    }
    
    // An Inst is a single instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/reusify": {
          "version": "1.0.4",
          "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
          "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * AWS/GCE: Rework use of master name ([#30047](https://github.com/kubernetes/kubernetes/pull/30047), [@zmerlynn](https://github.com/zmerlynn))
    * Add density (batch pods creation latency and resource) and resource performance tests to `test-e2e-node' built for Linux only ([#30026](https://github.com/kubernetes/kubernetes/pull/30026), [@coufon](https://github.com/coufon))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

         (
           uuidgen --random;
           uuidgen --random;
           uuidgen --random;
         ) | sha256sum \
           | head -c 64
        )";
      done
      # Finally, convert the ASCII hex to base64 to increase the density.
      echo -n "${out}" | xxd -r -p | base64 -w 0
    }
    
    # Helper for configuring iptables rules for metadata server.
    #
    # $1 is the command flag (-I or -D).
    # $2 is the firewall action (LOG or REJECT).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top