Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for Everything (0.17 sec)

  1. src/regexp/syntax/parse.go

    				p.repeats *= int64(n)
    			}
    		}
    		if int64(p.numRegexp) < maxSize/p.repeats {
    			return
    		}
    
    		// We need to start tracking size.
    		// Make the map and belatedly populate it
    		// with info about everything we've constructed so far.
    		p.size = make(map[*Regexp]int64)
    		for _, re := range p.stack {
    			p.checkSize(re)
    		}
    	}
    
    	if p.calcSize(re, true) > maxSize {
    		panic(ErrLarge)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    		v1.ResourceMemory: resource.MustParse("5G"),
    	}
    	tests := []struct {
    		capacity            v1.ResourceList
    		allocatable         v1.ResourceList
    		expectedAllocatable v1.ResourceList
    	}{{ // Everything set, no defaulting.
    		capacity:            capacity,
    		allocatable:         allocatable,
    		expectedAllocatable: allocatable,
    	}, { // Allocatable set, no defaulting.
    		capacity:            nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    spec:
      hosts:
      - serviceentry.istio.io
      ports:
      - name: http
        number: 80
        protocol: HTTP
        targetPort: 8080
      location: MESH_EXTERNAL
      resolution: STATIC # not honored for now; everything is static
      workloadSelector:
        labels:
          app: uncaptured` // cannot select pods captured in ambient mesh; IPs are unique per network
    			svcs := apps.All
    			for _, svc := range svcs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	return b3
    }
    
    // asn1BitLength returns the bit-length of bitString by considering the
    // most-significant bit in a byte to be the "first" bit. This convention
    // matches ASN.1, but differs from almost everything else.
    func asn1BitLength(bitString []byte) int {
    	bitLen := len(bitString) * 8
    
    	for i := range bitString {
    		b := bitString[len(bitString)-i-1]
    
    		for bit := uint(0); bit < 8; bit++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	// Reorder parts metadata based on erasure distribution order.
    	onlineDisks, metaArr = shuffleDisksAndPartsMetadataByIndex(onlineDisks, metaArr, fi)
    
    	// For negative length read everything.
    	if length < 0 {
    		length = fi.Size - startOffset
    	}
    
    	// Reply back invalid range if the input offset and length fall out of range.
    	if startOffset > fi.Size || startOffset+length > fi.Size {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		// Avoid collisions with "real" symbol names.
    		name = fmt.Sprintf(".pkg.%s.%d", name, len(d.linkctxt.compUnits))
    		st = sym.SDWARFCUINFO
    	case dwarf.DW_ABRV_VARIABLE:
    		st = sym.SDWARFVAR
    	default:
    		// Everything else is assigned a type of SDWARFTYPE. that
    		// this also includes loose ends such as STRUCT_FIELD.
    		st = sym.SDWARFTYPE
    	}
    	ds := d.ldr.LookupOrCreateSym(dwarf.InfoPrefix+name, 0)
    	dsu := d.ldr.MakeSymbolUpdater(ds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // C API for TensorFlow.
    //
    // The API leans towards simplicity and uniformity instead of convenience
    // since most usage will be by language specific wrappers.
    //
    // Conventions:
    // * We use the prefix TF_ for everything in the API.
    // * Objects are always passed around as pointers to opaque structs
    //   and these structs are allocated/deallocated via the API.
    // * TF_Status holds error information.  It is an object type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. src/runtime/map.go

    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    		hashGrow(t, h)
    		goto again // Growing the table invalidates everything, so try again
    	}
    
    	if inserti == nil {
    		// The current bucket and all the overflow buckets connected to it are full, allocate a new one.
    		newb := h.newoverflow(t, b)
    		inserti = &newb.tophash[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    		t.Skipf("ignoring failure on %s/%s; see golang.org/issue/13841", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    	// IN_QEMU=1 indicates that the tests are running in QEMU. See issue 9605.
    	if os.Getenv("IN_QEMU") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	}
    	// List all pods to include those that don't match the selector anymore
    	// but have a ControllerRef pointing to this controller.
    	pods, err := jm.podStore.Pods(j.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion
    	// with an uncached quorum read sometime after listing Pods (see #42639).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top