Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for doens (0.08 sec)

  1. pilot/pkg/model/endpointshards.go

    		}
    	}
    	epShards.Unlock()
    }
    
    // PushType is an enumeration that decides what type push we should do when we get EDS update.
    type PushType int
    
    const (
    	// NoPush does not push any thing.
    	NoPush PushType = iota
    	// IncrementalPush just pushes endpoints.
    	IncrementalPush
    	// FullPush triggers full push - typically used for new services.
    	FullPush
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		return
    	}
    
    	// filter object lock metadata if permission does not permit
    	getRetPerms := checkRequestAuthType(ctx, r, policy.GetObjectRetentionAction, bucket, object)
    	legalHoldPerms := checkRequestAuthType(ctx, r, policy.GetObjectLegalHoldAction, bucket, object)
    
    	// filter object lock metadata if permission does not permit
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    		cl.logger.Debugf("added resource that already exists: %v", resourceGVK)
    		return
    	}
    
    	// We need multiple filters:
    	// 1. Is it in this revision?
    	// 2. Does it match the discovery selector?
    	// 3. Does it have a special per-type object filter?
    	var extraFilter func(obj any) bool
    	if of, f := cl.filtersByGVK[resourceGVK]; f && of.ObjectFilter != nil {
    		extraFilter = of.ObjectFilter.Filter
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. cmd/object-multipart-handlers.go

    	// We need to preserve the encryption headers set in EncryptRequest,
    	// so we do not want to override them, copy them instead.
    	for k, v := range encMetadata {
    		metadata[k] = v
    	}
    
    	// Ensure that metadata does not contain sensitive information
    	crypto.RemoveSensitiveEntries(metadata)
    
    	if isCompressible(r.Header, object) {
    		// Storing the compression metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    						return
    					}
    					// Validation ensures that the request does not query services and files at the same time
    					if len(nlq.Services) > 0 {
    						journal.ServeHTTP(w, req)
    						return
    					}
    					// Validation ensures that the request does not explicitly query multiple files at the same time
    					if len(nlq.Files) == 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // GetActivePods returns pods that have been admitted to the kubelet that
    // are not fully terminated. This is mapped to the "desired state" of the
    // kubelet - what pods should be running.
    //
    // WARNING: Currently this list does not include pods that have been force
    // deleted but may still be terminating, which means resources assigned to
    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    	resource, err := getResource(r.URL.Path, r.Host, globalDomainNames)
    	if err != nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRequest), r.URL)
    		return
    	}
    
    	// Make sure that the URL does not contain object name.
    	if bucket != path.Clean(resource[1:]) {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    	previousInfo := con.proxy.GetWatchedResource(request.TypeUrl)
    
    	// This can happen in two cases:
    	// 1. Envoy initially send request to Istiod
    	// 2. Envoy reconnect to Istiod i.e. Istiod does not have
    	// information about this typeUrl, but Envoy sends response nonce - either
    	// because Istiod is restarted or Envoy disconnects and reconnects.
    	// We should always respond with the current resource names.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	kubelet.backOff = flowcontrol.NewBackOff(time.Second, time.Minute)
    	kubelet.backOff.Clock = fakeClock
    	kubelet.resyncInterval = 10 * time.Second
    	kubelet.workQueue = queue.NewBasicWorkQueue(fakeClock)
    	// Relist period does not affect the tests.
    	kubelet.pleg = pleg.NewGenericPLEG(fakeRuntime, make(chan *pleg.PodLifecycleEvent, 100), &pleg.RelistDuration{RelistPeriod: time.Hour, RelistThreshold: genericPlegRelistThreshold}, kubelet.podCache, clock.RealClock{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    		if len(hostnames) == 0 {
    			hostnames = []k8s.Hostname{"*"}
    		}
    		if len(parent.Hostnames) > 0 {
    			// TODO: the spec actually has a label match, not a string match. That is, *.com does not match *.apple.com
    			// We are doing a string match here
    			matched := false
    			hostMatched := false
    		out:
    			for _, routeHostname := range hostnames {
    				for _, parentHostNamespace := range parent.Hostnames {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top