Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 627 for nrand (0.07 sec)

  1. src/compress/flate/testdata/huffman-rand-limit.dyn.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 229 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"bytes"
    	"context"
    	"crypto/rand"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	mrand "math/rand"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/anames.go

    	"ANDISCC",
    	"BC",
    	"BCL",
    	"BEQ",
    	"BGE",
    	"BGT",
    	"BLE",
    	"BLT",
    	"BNE",
    	"BVC",
    	"BVS",
    	"BDNZ",
    	"BDZ",
    	"CMP",
    	"CMPU",
    	"CMPEQB",
    	"CNTLZW",
    	"CNTLZWCC",
    	"CRAND",
    	"CRANDN",
    	"CREQV",
    	"CRNAND",
    	"CRNOR",
    	"CROR",
    	"CRORN",
    	"CRXOR",
    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    	"DIVWUVCC",
    	"DIVWUV",
    	"MODUD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/huffman-rand-1k.golden

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 1005 bytes
    - Viewed (0)
  5. src/compress/flate/testdata/huffman-rand-1k.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 1000 bytes
    - Viewed (0)
  6. src/compress/flate/testdata/huffman-rand-1k.dyn.expect

    Klaus Post <******@****.***> 1460282413 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 18 02:30:46 UTC 2016
    - 1005 bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages_test.go

    		panic("rand.Read failed: " + err.Error())
    	}
    	return r
    }
    
    func randomString(n int, rand *rand.Rand) string {
    	b := randomBytes(n, rand)
    	return string(b)
    }
    
    func (*clientHelloMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientHelloMsg{}
    	m.vers = uint16(rand.Intn(65536))
    	m.random = randomBytes(32, rand)
    	m.sessionId = randomBytes(rand.Intn(32), rand)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/compress/flate/testdata/huffman-rand-1k.dyn.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 1K bytes
    - Viewed (0)
  9. src/testing/quick/quick.go

    	Values func([]reflect.Value, *rand.Rand)
    }
    
    var defaultConfig Config
    
    // getRand returns the *rand.Rand to use for a given Config.
    func (c *Config) getRand() *rand.Rand {
    	if c.Rand == nil {
    		return rand.New(rand.NewSource(time.Now().UnixNano()))
    	}
    	return c.Rand
    }
    
    // getMaxCount returns the maximum number of iterations to run for a given
    // Config.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginMultiProjectTest.groovy

            settingsFile << "include 'child:grand'"
            file('child/grand/build.gradle') << javaProjectUsingCheckstyle()
            file('child/grand/src/main/java/Dummy.java') << javaClassWithNewLineAtEnd()
            file('config/checkstyle/checkstyle.xml') << simpleCheckStyleConfig()
    
            expect:
            succeeds(':child:grand:checkstyleMain')
            checkStyleReportFile(file('child/grand')).assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:39:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top