Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for srand (0.09 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: shiftIsBounded(v)
    	// result: (SRAD (MOVHreg x) y)
    	for {
    		x := v_0
    		y := v_1
    		if !(shiftIsBounded(v)) {
    			break
    		}
    		v.reset(OpPPC64SRAD)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVHreg, typ.Int64)
    		v0.AddArg(x)
    		v.AddArg2(v0, y)
    		return true
    	}
    	// match: (Rsh16x16 <t> x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (SRAD x (MOVWreg y))
    	// result: (SRAD x y)
    	for {
    		x := v_0
    		if v_1.Op != OpS390XMOVWreg {
    			break
    		}
    		y := v_1.Args[0]
    		v.reset(OpS390XSRAD)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (SRAD x (MOVHreg y))
    	// result: (SRAD x y)
    	for {
    		x := v_0
    		if v_1.Op != OpS390XMOVHreg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	RLDIMI:         "rldimi",
    	RLDIMICC:       "rldimi.",
    	SC:             "sc",
    	SLBIA:          "slbia",
    	SLBIE:          "slbie",
    	SLD:            "sld",
    	SLDCC:          "sld.",
    	SRAD:           "srad",
    	SRADCC:         "srad.",
    	SRADI:          "sradi",
    	SRADICC:        "sradi.",
    	SRD:            "srd",
    	SRDCC:          "srd.",
    	STD:            "std",
    	STDCXCC:        "stdcx.",
    	STDU:           "stdu",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	if err := apiextensions.AddToScheme(scheme); err != nil {
    		t.Fatal(err)
    	}
    
    	seed := rand.Int63()
    	t.Logf("seed: %d", seed)
    	fuzzerFuncs := fuzzer.MergeFuzzerFuncs(apiextensionsfuzzer.Funcs)
    	f := fuzzer.FuzzerFor(fuzzerFuncs, rand.NewSource(seed), codecs)
    
    	for i := 0; i < 10000; i++ {
    		// fuzz internal types
    		schema := &apiextensions.JSONSchemaProps{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		if len(service.Spec.ClusterIPs) != 0 {
    			allErrs = append(allErrs, field.Invalid(clusterIPsField, service.Spec.ClusterIPs, "must be empty when `clusterIP` is not specified"))
    		}
    	}
    
    	// ipfamilies stand alone validation
    	// must be either IPv4 or IPv6
    	seen := sets.Set[core.IPFamily]{}
    	for i, ipFamily := range service.Spec.IPFamilies {
    		if !supportedServiceIPFamily.Has(ipFamily) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  6. src/net/http/h2_bundle.go

    // license that can be found in the LICENSE file.
    //
    
    package http
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/rand"
    	"crypto/tls"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"log"
    	"math"
    	"math/bits"
    	mathrand "math/rand"
    	"net"
    	"net/http/httptrace"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.13.md

    Major focus for SIG VMware for this release is the work on moving internal APIs that the vSphere provider depends upon to staging to guarantee API stability. This work is being done in conjunction with SIG Cloud Provider and includes the creation of a brand new vsphere-csi plugin to replace the current volume functionalities in-tree.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool tty = 18;
    }
    
    // Represents an ephemeral volume that is handled by a normal storage driver.
    message EphemeralVolumeSource {
      // Will be used to create a stand-alone PVC to provision the volume.
      // The pod in which this EphemeralVolumeSource is embedded will be the
      // owner of the PVC, i.e. the PVC will be deleted together with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    }
    
    // EphemeralVolumeSource represents an ephemeral volume that is handled by a normal storage driver.
    type EphemeralVolumeSource struct {
    	// VolumeClaimTemplate will be used to create a stand-alone PVC to provision the volume.
    	// The pod in which this EphemeralVolumeSource is embedded will be the
    	// owner of the PVC, i.e. the PVC will be deleted together with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_EphemeralVolumeSource = map[string]string{
    	"":                    "Represents an ephemeral volume that is handled by a normal storage driver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top