Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for bases (0.23 sec)

  1. test/recover.go

    	defer withoutRecoverRecursive(0) // ditto
    	panic(1)
    }
    
    // Repeat test1 with closures instead of standard function.
    // Interesting because recover bases its decision
    // on the frame pointer of its caller, and a closure's
    // frame pointer is in the middle of its actual arguments
    // (after the hidden ones for the closed-over variables).
    func test1WithClosures() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  2. src/strconv/atoi_test.go

    		benchmarkAtoi(b, -1)
    	})
    }
    
    func benchmarkAtoi(b *testing.B, neg int) {
    	cases := []benchCase{
    		{"7bit", 1<<7 - 1},
    		{"26bit", 1<<26 - 1},
    		{"31bit", 1<<31 - 1},
    	}
    	if IntSize == 64 {
    		cases = append(cases, []benchCase{
    			{"56bit", 1<<56 - 1},
    			{"63bit", 1<<63 - 1},
    		}...)
    	}
    	for _, cs := range cases {
    		b.Run(cs.name, func(b *testing.B) {
    			s := fmt.Sprintf("%d", cs.num*int64(neg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    driver programs including command-line tools (such as vet), text editors and
    IDEs, build and test systems (such as go build, Bazel, or Buck), test
    frameworks, code review tools, code-base indexers (such as SourceGraph),
    documentation viewers (such as godoc), batch pipelines for large code
    bases, and so on.
    
    # Analyzer
    
    The primary type in the API is [Analyzer]. An Analyzer statically
    describes an analysis function: its name, documentation, flags,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/gradient_checker.cc

    // performance becomes an issue.
    
    // BaseUnitsForType provides a list of typed unit values for each basis in the
    // requested type.
    // When T is real,
    // BaseUnitsForType<T>::values() is just a single-entry vector [1]
    // When T is complex,
    // BaseUnitsForType<T>::values() is a two-entry vector [1, i] - the unit
    // values in each of its two bases.
    template <typename T>
    struct BaseUnitsForType {};  // Specializations below
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/LongMath.java

        private boolean testWitness(long base, long n) {
          int r = Long.numberOfTrailingZeros(n - 1);
          long d = (n - 1) >> r;
          base %= n;
          if (base == 0) {
            return true;
          }
          // Calculate a := base^d mod n.
          long a = powMod(base, d, n);
          // n passes this test if
          //    base^d = 1 (mod n)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/LongMath.java

        private boolean testWitness(long base, long n) {
          int r = Long.numberOfTrailingZeros(n - 1);
          long d = (n - 1) >> r;
          base %= n;
          if (base == 0) {
            return true;
          }
          // Calculate a := base^d mod n.
          long a = powMod(base, d, n);
          // n passes this test if
          //    base^d = 1 (mod n)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/local/istiod_analyze.go

    	if err != nil {
    		return err
    	}
    
    	sa.meshNetworks = mn
    	return nil
    }
    
    // AddDefaultResources adds some basic dummy Istio resources, based on mesh configuration.
    // This is useful for files-only analysis cases where we don't expect the user to be including istio system resources
    // and don't want to generate false positives because they aren't there.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. src/runtime/debuglog.go

    type debugLogWriter struct {
    	_     sys.NotInHeap
    	write uint64
    	data  debugLogBuf
    
    	// tick and nano are the time bases from the most recently
    	// written sync record.
    	tick, nano uint64
    
    	// r is a reader that consumes records as they get overwritten
    	// by the writer. It also acts as the initial reader state
    	// when printing the log.
    	r debugLogReader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. docs/es/docs/index.md

        * Convertir tipos de Python (`str`, `int`, `float`, `bool`, `list`, etc).
        * Objetos `datetime`.
        * Objetos `UUID`.
        * Modelos de bases de datos.
        * ...y muchos más.
    * Documentación automática e interactiva incluyendo 2 interfaces de usuario alternativas:
        * Swagger UI.
        * ReDoc.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass transforms region bases control flow operations in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top