Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for bigN (0.09 sec)

  1. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		return err
    	}
    
    	// If the configmap is too big, clear the entire thing and count on this controller (or another one) to add the correct data back.
    	// We return the original error which causes the controller to re-queue.
    	// Too big means
    	//   1. request is so big the generic request catcher finds it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/math/big/nat.go

    			if i >= 0 {
    				buf[i] = byte(d)
    			} else if byte(d) != 0 {
    				panic("math/big: buffer too small to fit value")
    			}
    			d >>= 8
    		}
    	}
    
    	if i < 0 {
    		i = 0
    	}
    	for i < len(buf) && buf[i] == 0 {
    		i++
    	}
    
    	return
    }
    
    // bigEndianWord returns the contents of buf interpreted as a big-endian encoded Word value.
    func bigEndianWord(buf []byte) Word {
    	if _W == 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    }
    
    // gcmFieldElement represents a value in GF(2¹²⁸). In order to reflect the GCM
    // standard and make binary.BigEndian suitable for marshaling these values, the
    // bits are stored in big endian order. For example:
    //
    //	the coefficient of x⁰ can be obtained by v.low >> 63.
    //	the coefficient of x⁶³ can be obtained by v.low & 1.
    //	the coefficient of x⁶⁴ can be obtained by v.high >> 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    limitations under the License.
    */
    
    package clustertrustbundle
    
    import (
    	"bytes"
    	"context"
    	"crypto/ed25519"
    	"crypto/rand"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/pem"
    	"fmt"
    	"math/big"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	certificatesv1alpha1 "k8s.io/api/certificates/v1alpha1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/informers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/Utf8Test.java

       * @param numBytes the number of bytes in the byte array
       * @param expectedCount the expected number of roundtrippable permutations
       * @param start the starting bytes encoded as a long as big-endian
       * @param lim the limit of bytes to process encoded as a long as big-endian, or -1 to mean the max
       *     limit for numBytes
       */
      @GwtIncompatible // java.nio.charset.Charset
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    if (codeSizeSoFar + getEstimatedSingleLambdaHandlingCodeLength(argumentTypes) + getEstimatedEpilogueLength() >= MAX_CODE_SIZE) {
                        // In theory, it is possible to have a lambda so big, its handling won't fit in a single method, and such a lambda will cause an infinite loop here.
                        // However, the number of captured lambda variables is limited by the max number of method arguments allowed by the JVM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.s

    // Load input block into V1-V4
    // in big endian order and
    // update blk_inp by 64.
    #define LOAD_INPUT_BLOCK64(blk_inp) \
    	MOVD $16, R16; \
    	MOVD $32, R17; \
    	MOVD $48, R18; \
    	P8_LXVB16X(blk_inp,R0,V1); \
    	P8_LXVB16X(blk_inp,R16,V2); \
    	P8_LXVB16X(blk_inp,R17,V3); \
    	P8_LXVB16X(blk_inp,R18,V4); \
    	ADD $64, blk_inp
    
    // Load input block into V1-V8
    // in big endian order and
    // Update blk_inp by 128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/cmd/dist/buildtool.go

    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    // These will be imported during bootstrap as bootstrap/name, like bootstrap/math/big.
    var bootstrapDirs = []string{
    	"cmp",
    	"cmd/asm",
    	"cmd/asm/internal/...",
    	"cmd/cgo",
    	"cmd/compile",
    	"cmd/compile/internal/...",
    	"cmd/internal/archive",
    	"cmd/internal/bio",
    	"cmd/internal/codesign",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    import (
    	"bytes"
    	"context"
    	cryptorand "crypto/rand"
    	"crypto/rsa"
    	"crypto/tls"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/base64"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"io/ioutil"
    	"math/big"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/version"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/runtime/mgcstack.go

    	workbufhdr
    	next *stackObjectBuf
    }
    
    func init() {
    	if unsafe.Sizeof(stackWorkBuf{}) > unsafe.Sizeof(workbuf{}) {
    		panic("stackWorkBuf too big")
    	}
    	if unsafe.Sizeof(stackObjectBuf{}) > unsafe.Sizeof(workbuf{}) {
    		panic("stackObjectBuf too big")
    	}
    }
    
    // A stackObject represents a variable on the stack that has had
    // its address taken.
    type stackObject struct {
    	_     sys.NotInHeap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top