Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 619 for seal (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    			ip := netutils.ParseIPSloppy(strings.TrimSpace(part))
    			if ip != nil {
    				srcIPs = append(srcIPs, ip)
    			}
    		}
    	}
    
    	// Try the X-Real-Ip header.
    	hdrRealIp := hdr.Get("X-Real-Ip")
    	if hdrRealIp != "" {
    		ip := netutils.ParseIPSloppy(hdrRealIp)
    		// Only append the X-Real-Ip if it's not already contained in the X-Forwarded-For chain.
    		if ip != nil && !containsIP(srcIPs, ip) {
    			srcIPs = append(srcIPs, ip)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys.go

    func (f fakeFile) Mode() fs.FileMode  { return f.real.Mode() }
    func (f fakeFile) ModTime() time.Time { return f.real.ModTime() }
    func (f fakeFile) IsDir() bool        { return f.real.IsDir() }
    func (f fakeFile) Sys() any           { return f.real.Sys() }
    
    func (f fakeFile) String() string {
    	return fs.FormatFileInfo(f)
    }
    
    // missingFile provides an fs.FileInfo for an overlaid file where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/cmd/dist/util.go

    	return wd
    }
    
    // xrealwd returns the 'real' name for the given path.
    // real is defined as what xgetwd returns in that directory.
    func xrealwd(path string) string {
    	old := xgetwd()
    	if err := os.Chdir(path); err != nil {
    		fatalf("chdir %s: %v", path, err)
    	}
    	real := xgetwd()
    	if err := os.Chdir(old); err != nil {
    		fatalf("chdir %s: %v", old, err)
    	}
    	return real
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector.go

    			// and in the meantime a deletion of the real object associated with that uid was observed
    			logger.V(5).Info("item no longer in the graph, skipping attemptToDeleteItem", "item", n.identity)
    			return forgetItem
    		}
    		if nodeFromGraph.isObserved() {
    			// this can happen if attemptToDelete loops on a requeued virtual node because attemptToDeleteItem returned an error,
    			// and in the meantime the real object associated with that uid was observed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    // namespaced name, but with the hostname and VIPs changed to the appropriate ClusterSet values.
    // The real k8s Service can live anywhere in the mesh and does not have to reside in the same
    // cluster as the ServiceImport.
    type serviceImportCache interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. cmd/peer-s3-client.go

    		// of such a bucket. This is needed here as we identify such
    		// buckets here while listing buckets. As part of regular
    		// globalBucketMetadataSys.Init() call would get a valid
    		// buckets only and not the quourum lost ones like this, so
    		// explicit call
    		for bktName, count := range bucketsMap {
    			if count < quorum {
    				// Queue a bucket heal task
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/fmt/scan.go

    func (s *ss) scanComplex(verb rune, n int) complex128 {
    	if !s.okVerb(verb, floatVerbs, "complex") {
    		return 0
    	}
    	s.SkipSpace()
    	s.notEOF()
    	sreal, simag := s.complexTokens()
    	real := s.convertFloat(sreal, n/2)
    	imag := s.convertFloat(simag, n/2)
    	return complex(real, imag)
    }
    
    // convertString returns the string represented by the next input characters.
    // The format of the input is determined by the verb.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TopKSelector.java

        T[] castBuffer = (T[]) buffer;
        Arrays.sort(castBuffer, 0, bufferSize, comparator);
        if (bufferSize > k) {
          Arrays.fill(buffer, k, buffer.length, null);
          bufferSize = k;
          threshold = buffer[k - 1];
        }
        // Up to bufferSize, all elements of buffer are real Ts (not null unless T includes null)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. test/chan/select5.go

    // license that can be found in the LICENSE file.
    
    // Generate test of channel operations and simple selects.
    // The output of this program is compiled and run to do the
    // actual test.
    
    // Each test does only one real send or receive at a time, but phrased
    // in various ways that the compiler may or may not rewrite
    // into simpler expressions.
    
    package main
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"text/template"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  10. src/encoding/gob/dec_helpers.go

    		}
    		if i >= len(slice) {
    			// This is a slice that we only partially allocated.
    			growSlice(v, &slice, length)
    		}
    		real := float32FromBits(state.decodeUint(), ovfl)
    		imag := float32FromBits(state.decodeUint(), ovfl)
    		slice[i] = complex(float32(real), float32(imag))
    	}
    	return true
    }
    
    func decComplex128Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 19:28:46 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top