Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for Strip (0.57 sec)

  1. cmd/erasure-multipart.go

    			invp := InvalidPart{
    				PartNumber: part.PartNumber,
    				GotETag:    part.ETag,
    			}
    			return oi, invp
    		}
    		expPart := currentFI.Parts[partIdx]
    
    		// ensure that part ETag is canonicalized to strip off extraneous quotes
    		part.ETag = canonicalizeETag(part.ETag)
    		expETag := tryDecryptETag(objectEncryptionKey, expPart.ETag, kind == crypto.S3)
    		if expETag != part.ETag {
    			invp := InvalidPart{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    		TestSuiteCommon:       c,
    		ServerTypeDescription: fmt.Sprintf("%s%s", c.serverType, etcdStr),
    		withEtcdBackend:       withEtcdBackend,
    	}
    }
    
    func (s *TestSuiteIAM) iamSetup(c *check) {
    	var err error
    	// strip url scheme from endpoint
    	s.endpoint = strings.TrimPrefix(s.endPoint, "http://")
    	if s.secure {
    		s.endpoint = strings.TrimPrefix(s.endPoint, "https://")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	if justAuthority {
    		rawurl = "http://" + rawurl
    	}
    
    	if req.URL, err = url.ParseRequestURI(rawurl); err != nil {
    		return nil, err
    	}
    
    	if justAuthority {
    		// Strip the bogus "http://" back off.
    		req.URL.Scheme = ""
    	}
    
    	// Subsequent lines: Key: value.
    	mimeHeader, err := tp.ReadMIMEHeader()
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    			i = strings.Index(kv[1:], "=") + 1
    		}
    		if i < 0 {
    			if kv != "" {
    				// The entry is not of the form "key=value" (as it is required to be).
    				// Leave it as-is for now.
    				// TODO(#52436): should we strip or reject these bogus entries?
    				out = append(out, kv)
    			}
    			continue
    		}
    		k := kv[:i]
    		if caseInsensitive {
    			k = strings.ToLower(k)
    		}
    		if saw[k] {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    // An IPv4-mapped IPv6 address will not match an IPv4 prefix.
    // A zero-value IP will not match any prefix.
    // If ip has an IPv6 zone, Contains returns false,
    // because Prefixes strip zones.
    func (p Prefix) Contains(ip Addr) bool {
    	if !p.IsValid() || ip.hasZone() {
    		return false
    	}
    	if f1, f2 := p.ip.BitLen(), ip.BitLen(); f1 == 0 || f2 == 0 || f1 != f2 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	(STP [48] ptr (MOVDconst [0]) (MOVDconst [0])
    		(STP [32] ptr (MOVDconst [0]) (MOVDconst [0])
    			(STP [16] ptr (MOVDconst [0]) (MOVDconst [0])
    				(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem))))
    
    // strip off fractional word zeroing
    (Zero [s] ptr mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Zero [8]
    		(OffPtr <ptr.Type> ptr [s-8])
    		(Zero [s-s%16] ptr mem))
    (Zero [s] ptr mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	// Avoid round tripping the ClusterConfiguration embedded in the InitConfiguration, since it is
    	// only present in the internal version and not in public versions
    	obj.ClusterConfiguration = kubeadm.ClusterConfiguration{}
    
    	// Adds the default bootstrap token to get the round trip working
    	obj.BootstrapTokens = []bootstraptokenv1.BootstrapToken{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	if st.str[0] == 'G' || st.str[0] == 'T' {
    		return st.specialName()
    	}
    
    	a, explicitObjectParameter := st.name()
    	a = simplify(a)
    
    	if !params {
    		// Don't demangle the parameters.
    
    		// Strip CV-qualifiers, as they apply to the 'this'
    		// parameter, and are not output by the standard
    		// demangler without parameters.
    		if mwq, ok := a.(*MethodWithQualifiers); ok {
    			a = mwq.Method
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    }
    
    # Quote something appropriate for a yaml string.
    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    # this, but PyYAML isn't shipped by default, and *rant rant rant ... SIGH*
    function yaml-quote {
      echo "${@:-}" | sed -e "s/'/''/g;s/^/'/i;s/$/'/i"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				var copied inf.Dec
    				copied.Add(inf.NewDec(0, inf.Scale(0)), got.AsDec())
    				q := NewDecimalQuantity(copied, format)
    				if c := q.Cmp(got); c != 0 {
    					t.Errorf("%v: round trip from decimal back to quantity is not comparable: %d: %#v vs %#v", item.input, c, got, q)
    				}
    			}
    
    			// verify that we can decompose the input and get the same result by building up from the base.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top