Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 944 for crunch (0.14 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_arm.go

    		{Name: "fastmul", Feature: &ARM.HasFASTMUL},
    		{Name: "fpa", Feature: &ARM.HasFPA},
    		{Name: "edsp", Feature: &ARM.HasEDSP},
    		{Name: "java", Feature: &ARM.HasJAVA},
    		{Name: "iwmmxt", Feature: &ARM.HasIWMMXT},
    		{Name: "crunch", Feature: &ARM.HasCRUNCH},
    		{Name: "neon", Feature: &ARM.HasNEON},
    		{Name: "idivt", Feature: &ARM.HasIDIVT},
    		{Name: "idiva", Feature: &ARM.HasIDIVA},
    		{Name: "lpae", Feature: &ARM.HasLPAE},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/git/semver-branch.txt

    at 2022-02-02T14:15:21-05:00
    git add pkg go.mod
    git commit -a -m 'pkg: add empty package'
    git branch -m main
    git tag 'v0.1.0'
    
    at 2022-02-02T14:19:44-05:00
    git branch 'v1.0.0'
    git branch 'v2.0.0'
    git checkout 'v1.0.0'
    cp v1/pkg/pkg.go pkg/pkg.go
    git commit -a -m 'pkg: start developing toward v1.0.0'
    
    at 2022-02-03T10:53:13-05:00
    git branch 'v3.0.0-devel'
    git checkout 'v3.0.0-devel'
    git checkout v0.1.0 pkg/pkg.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. .github/workflows/release-branch-cherrypick.yml

    # https://github.com/tensorflow/tensorflow/actions/workflows/release-branch-cherrypick.yml
    # and click "Run Workflow." Leave "Use Workflow From" set to "master", then
    # input the branch name and paste the cherry-pick commit and click Run. A PR
    # will be created.
    
    name: Release Branch Cherrypick
    on:
      workflow_dispatch:
        inputs:
          # We use this instead of the "run on branch" argument because GitHub looks
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. .github/workflows/sigbuild-docker-branch.yml

    name: Upload SIG Build docker containers modified for release branches
    
    on:
      workflow_dispatch:
      push:
        paths:
          - '.github/workflows/sigbuild-docker-branch.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
          - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
        branches:
          - "r[1-9].[0-9]+"
    
    permissions:
      contents: read
    
    jobs:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    scala.Option, scala.collection.immutable.List); } xsbt/boot/Launch$$anonfun$xsbt$boot$Launch$$getScalaProvider0$2.class package xsbt.boot; public final synchronized class Launch$$anonfun$xsbt$boot$Launch$$getScalaProvider0$2 extends scala.runtime.AbstractFunction1 implements scala.Serializable { private final String scalaVersion$2; private final java.io.File lib$1; private scala.Option apply(RetrievedModule); public void Launch$$anonfun$xsbt$boot$Launch$$getScalaProvider0$2(Launch, String, java.io.File);...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  6. src/runtime/softfloat64.go

    	}
    	return
    }
    
    func fpack64(sign, mant uint64, exp int, trunc uint64) uint64 {
    	mant0, exp0, trunc0 := mant, exp, trunc
    	if mant == 0 {
    		return sign
    	}
    	for mant < 1<<mantbits64 {
    		mant <<= 1
    		exp--
    	}
    	for mant >= 4<<mantbits64 {
    		trunc |= mant & 1
    		mant >>= 1
    		exp++
    	}
    	if mant >= 2<<mantbits64 {
    		if mant&1 != 0 && (trunc != 0 || mant&2 != 0) {
    			mant++
    			if mant >= 4<<mantbits64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  7. src/image/png/testdata/invalid-trunc.png

    invalid-trunc.png...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

              return 0x80;
            } else if (userFriendly.matches("(?i)(?:French|Latin|Western.*European)")) {
              // Mostly 1-byte UTF-8 sequences, mixed with occasional 2-byte
              // sequences - "Western European" text
              return 0x90;
            } else if (userFriendly.matches("(?i)(?:Branch.*Prediction.*Hostile)")) {
              // Defeat branch predictor for: c < 0x80 ; branch taken 50% of the time.
              return 0x100;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 5.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/BuildRequestMetaData.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A bunch of information about the request that launched the current build.
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface BuildRequestMetaData {
    
        /**
         * Returns the meta-data about the client used to launch this build.
         */
        BuildClientMetaData getClient();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

    def LaunchToDeviceAttributePass : Pass<"tf-launch-to-device-attribute", "mlir::func::FuncOp"> {
      let summary = "Hoists and annotates device launch inner ops with associated device attribute.";
    
      let description = [{
        This pass hoists a `tf_device.launch` body and assigns a `device` attribute
        to each TensorFlow dialect op in the body based on the `device` attribute on
        the `tf_device.launch`. If a TensorFlow dialect op already has a device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top