Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 267 for gomod (0.08 sec)

  1. src/math/rand/example_test.go

    		"You may rely on it",
    		"As I see it yes",
    		"Most likely",
    		"Outlook good",
    		"Yes",
    		"Signs point to yes",
    		"Reply hazy try again",
    		"Ask again later",
    		"Better not tell you now",
    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    errorproneExtension.disabledChecks.addAll(
        // DISCUSS
        "EqualsGetClass", // Let's agree if we want to adopt Error Prone's idea of valid equals()
        "JdkObsolete", // Most of the checks are good, but we do not want to replace all LinkedLists without a good reason
    
        // NEVER
        "MissingSummary", // We have another mechanism to check Javadocs on public API
        "InjectOnConstructorOfAbstractClass", // We use abstract injection as a pattern
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typeparams/termlist.go

    	for _, x := range xl {
    		if x != nil && x.typ == nil {
    			return true
    		}
    	}
    	return false
    }
    
    // norm returns the normal form of xl.
    func (xl termlist) norm() termlist {
    	// Quadratic algorithm, but good enough for now.
    	// TODO(gri) fix asymptotic performance
    	used := make([]bool, len(xl))
    	var rl termlist
    	for i, xi := range xl {
    		if xi == nil || used[i] {
    			continue
    		}
    		for j := i + 1; j < len(xl); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/termlist.go

    	for _, x := range xl {
    		if x != nil && x.typ == nil {
    			return true
    		}
    	}
    	return false
    }
    
    // norm returns the normal form of xl.
    func (xl termlist) norm() termlist {
    	// Quadratic algorithm, but good enough for now.
    	// TODO(gri) fix asymptotic performance
    	used := make([]bool, len(xl))
    	var rl termlist
    	for i, xi := range xl {
    		if xi == nil || used[i] {
    			continue
    		}
    		for j := i + 1; j < len(xl); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:29:30 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. security/pkg/credentialfetcher/plugin/leak_test.go

    	// metadata server code against a fake metadata server. We do not control the client, and cannot
    	// configure it to exit early, retry faster, etc - its all fixed. As a result, we don't have a good
    	// way to shut it down if it is still retrying in the background.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 20:52:37 UTC 2021
    - 1020 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go

    	// Final argument is (basep *uintptr) and the syscall doesn't take nil.
    	// 64 bits should be enough. (32 bits isn't even on 386). Since the
    	// actual system call is getdirentries64, 64 is a good guess.
    	// TODO(rsc): Can we use a single global basep for all calls?
    	var base = (*uintptr)(unsafe.Pointer(new(uint64)))
    	return Getdirentries(fd, buf, base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 705 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audagnostic_test.go

    		wantErr           bool
    	}
    	type taudcfg struct {
    		auds         Audiences
    		implicitAuds Audiences
    	}
    	cs := []struct {
    		name string
    
    		taudcfgs []taudcfg
    		treqs    []treq
    	}{
    		{
    			name: "good audience",
    
    			taudcfgs: []taudcfg{
    				{
    					implicitAuds: Audiences{"api"},
    					auds:         Audiences{"api"},
    				},
    				{
    					implicitAuds: Audiences{"api", "other"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. test/shift3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that the compiler's noder uses the correct type
    // for RHS shift operands that are untyped. Must compile;
    // run for good measure.
    
    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    func f(x, y int) {
    	if x != y {
    		panic(fmt.Sprintf("%d != %d", x, y))
    	}
    }
    
    func main() {
    	var x int = 1
    	f(x<<1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 17:19:55 UTC 2022
    - 834 bytes
    - Viewed (0)
  9. src/math/jn.go

    			//
    			// To determine how many terms needed, let
    			// Q(0) = w, Q(1) = w(w+h) - 1,
    			// Q(k) = (w+k*h)*Q(k-1) - Q(k-2),
    			// When Q(k) > 1e4	good for single
    			// When Q(k) > 1e9	good for double
    			// When Q(k) > 1e17	good for quadruple
    
    			// determine k
    			w := float64(n+n) / x
    			h := 2 / x
    			q0 := w
    			z := w + h
    			q1 := w*z - 1
    			k := 1
    			for q1 < 1e9 {
    				k++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/locking/ExclusiveFileAccessManagerTest.groovy

        private manager = new ExclusiveFileAccessManager(1000, 10)
    
        def 'If the directory for the lock file cannot be created then we get a good error message'() {
            given:
            def fileWithSameNameAsDirectory = temporaryDirectory.createFile('someDir')
            when:
            manager.access(fileWithSameNameAsDirectory.file('someFile.zip')) {
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top