Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 318 for biases (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_trieval.go
    
    // Package cases provides general and language-specific case mappers.
    package cases // import "golang.org/x/text/cases"
    
    import (
    	"golang.org/x/text/language"
    	"golang.org/x/text/transform"
    )
    
    // References:
    // - Unicode Reference Manual Chapter 3.13, 4.2, and 5.18.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/coverage.go

    type coverage struct {
    	tags    func() []Tag
    	bases   func() []Base
    	scripts func() []Script
    	regions func() []Region
    }
    
    func (s *coverage) Tags() []Tag {
    	if s.tags == nil {
    		return nil
    	}
    	return s.tags()
    }
    
    // bases implements sort.Interface and is used to sort base languages.
    type bases []Base
    
    func (b bases) Len() int {
    	return len(b)
    }
    
    func (b bases) Swap(i, j int) {
    	b[i], b[j] = b[j], b[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  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. src/internal/trace/base.go

    	// TODO(mknyszek): This is go122-specific, but shouldn't be.
    	// Generalize this in the future.
    	e := Event{
    		table: table,
    		ctx:   s.schedCtx,
    		base: baseEvent{
    			typ:  go122.EvCPUSample,
    			time: s.time,
    		},
    	}
    	e.base.args[0] = uint64(s.stack)
    	return e
    }
    
    // stack represents a goroutine stack sample.
    type stack struct {
    	pcs []uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    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.
    */
    
    package environment
    
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/base/base.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package base defines shared basic pieces of the go command,
    // in particular logging and the Command structure.
    package base
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"os/exec"
    	"reflect"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/str"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. docker/Dockerfile.base

    John Howard <******@****.***> 1715194251 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  10. tests/integration/base.yaml

    John Howard <******@****.***> 1717194202 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top