Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 192 for biases (0.15 sec)

  1. src/runtime/softfloat64.go

    				mant >>= 1
    				exp++
    			}
    		}
    		mant >>= 1
    		exp++
    	}
    	if exp >= 1<<expbits64-1+bias64 {
    		return sign ^ inf64
    	}
    	if exp < bias64+1 {
    		if exp < bias64-int(mantbits64) {
    			return sign | 0
    		}
    		// repeat expecting denormal
    		mant, exp, trunc = mant0, exp0, trunc0
    		for exp < bias64 {
    			trunc |= mant & 1
    			mant >>= 1
    			exp++
    		}
    		if mant&1 != 0 && (trunc != 0 || mant&2 != 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  2. docs/fr/docs/features.md

    Inclus des librairies externes basées, aussi, sur Pydantic, servent d'<abbr title="Object-Relational Mapper">ORM</abbr>s, <abbr title="Object-Document Mapper">ODM</abbr>s pour les bases de données.
    
    Cela signifie aussi que, dans la plupart des cas, vous pouvez fournir l'objet reçu d'une requête **directement à la base de données**, comme tout est validé automatiquement.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/poset.go

    const uintSize = 32 << (^uint(0) >> 63) // 32 or 64
    
    // bitset is a bit array for dense indexes.
    type bitset []uint
    
    func newBitset(n int) bitset {
    	return make(bitset, (n+uintSize-1)/uintSize)
    }
    
    func (bs bitset) Reset() {
    	for i := range bs {
    		bs[i] = 0
    	}
    }
    
    func (bs bitset) Set(idx uint32) {
    	bs[idx/uintSize] |= 1 << (idx % uintSize)
    }
    
    func (bs bitset) Clear(idx uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

                                                         const Bits &sam2) {
        const Bits biased1 = SignAndMagnitudeToBiased(sam1);
        const Bits biased2 = SignAndMagnitudeToBiased(sam2);
        return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);
      }
    
      FloatingPointUnion u_;
    };
    
    // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/base.css

        list-style-type: none;
        margin: 0;
    }
    
    .site-footer__links .site-footer__links-list a {
        color: #ddd;
    }
    
    .site-footer__link-group {
        flex: 1 1 auto;
        flex-basis: 175px;
    }
    
    .site-footer__link-group header {
        color: #fff;
    }
    
    .site-footer__subscribe-newsletter .newsletter-form__header h5 {
        color: #fff;
        margin-top: 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

                                                         const Bits &sam2) {
        const Bits biased1 = SignAndMagnitudeToBiased(sam1);
        const Bits biased2 = SignAndMagnitudeToBiased(sam2);
        return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);
      }
    
      FloatingPointUnion u_;
    };
    
    // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

            }
        }
    
        static class NameClash extends InCatalog<NameClash> {
            private List<String> aliases = []
            private String getterName
            private String kind = 'library aliases'
    
            NameClash inConflict(String... aliases) {
                Collections.addAll(this.aliases, aliases)
                this
            }
    
            NameClash getterName(String getter) {
                this.getterName = getter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                // Because they are EXTRA attributes, we consider that a
                // candidate which does NOT provide this value is a better match
                int candidateCount = candidateAttributeSets.length;
                BitSet any = new BitSet(candidateCount);
                for (int c = 0; c < candidateCount; c++) {
                    ImmutableAttributes candidateAttributeSet = candidateAttributeSets[c];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		sources = append(sources, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	bases := make([]profileSource, 0, len(s.Base))
    	for _, src := range s.Base {
    		bases = append(bases, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            boolean isProvider = classNode.isAlsoProvider();
            String interfaces = isProvider ? " implements BundleNotationSupplier" : "";
            String bundleClassName = getClassName(classNode);
            List<String> aliases = classNode.aliases
                .stream()
                .sorted()
                .collect(toList());
            writeLn("public static class " + bundleClassName + " extends BundleFactory " + interfaces + "{");
            indent(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top