Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cheese (0.68 sec)

  1. pilot/pkg/networking/core/cluster.go

    				if endpointAddress == "" {
    					endpointAddress = model.LocalhostIPv6AddressPrefix
    				}
    			} else if hostIP == model.LocalhostAddressPrefix {
    				// prefer 127.0.0.1 to ::1, but if given no option choose ::1
    				ipV6EndpointAddress := ""
    				for _, host := range actualLocalHosts {
    					if netutil.IsIPv4Address(host) {
    						endpointAddress = host
    						break
    					}
    					if netutil.IsIPv6Address(host) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    		// This will not work - better to fail Istiod startup so it can be detected early.
    		// Unlike other failures that we can recover from, this has no mitigation, user must
    		// choose a different source.
    		// The feature didn't work for few releases, but a skip-version upgrade may still
    		// encounter it.
    		log.Fatalf("PILOT_CERT_PROVIDER=kubernetes is no longer supported by upstream K8S")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. cmd/erasure-multipart.go

    				continue
    			}
    			index := index
    			g.Go(func() error {
    				return disks[index].Delete(ctx, dstBucket, dstEntry, DeleteOptions{Immediate: true})
    			}, index)
    		}
    		// Ignore these errors.
    		g.WaitErr()
    	}
    
    	return evalDisks(disks, errs), err
    }
    
    // PutObjectPart - reads incoming stream and internally erasure codes
    // them. This call is similar to single put operation but it is part
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top