Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for Everything (0.26 sec)

  1. pkg/proxy/iptables/proxier.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package iptables
    
    //
    // NOTE: this needs to be tested in e2e since it uses iptables for everything.
    //
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"encoding/base32"
    	"fmt"
    	"net"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		Attempt:           attempt,
    		ContainersToStart: []int{},
    		ContainersToKill:  make(map[kubecontainer.ContainerID]containerToKillInfo),
    	}
    
    	// If we need to (re-)create the pod sandbox, everything will need to be
    	// killed and recreated, and init containers should be purged.
    	if createPodSandbox {
    		if !shouldRestartOnFailure(pod) && attempt != 0 && len(podStatus.ContainerStatuses) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    		// performance issue because we only reach here for composite literal
    		// types, which are comparatively rare.
    
    	default:
    		panic(fmt.Sprintf("%s: unknown expression type %T", atPos(e), e))
    	}
    
    	// everything went well
    	x.expr = e
    	return expression
    
    Error:
    	x.mode = invalid
    	x.expr = e
    	return statement // avoid follow-up errors
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    						e.Result.ClusterMatched = ""
    						e.Result.VirtualHostMatched = util.BlackHole
    					}
    					// TCP without a VIP will capture everything.
    					// Auto without a VIP is similar, but HTTP happens to work because routing is done on header
    					if call.Port == 82 || (call.Port == 81 && !call.IsHTTP()) {
    						e.Result.Error = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public String getName () {
            return this.fileLocator.getName();
        }
    
    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
         * does not have a parent. In this case <code>smb://</code> is returned.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top