Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for asker (0.23 sec)

  1. cni/pkg/util/podutil.go

    	// a pod from ambient that does not require the use of this annotation
    	if pod.Annotations[constants.AmbientRedirection] == constants.AmbientRedirectionDisabled {
    		// Pod explicitly asked to not have redirection enabled
    		return false
    	}
    	return true
    }
    
    func podHasSidecar(pod *corev1.Pod) bool {
    	if _, f := pod.GetAnnotations()[annotation.SidecarStatus.Name]; f {
    		return true
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 18:04:40 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. doc/godebug.md

    respectively.
    This behavior was backported to Go 1.19.8+ and Go 1.20.3+.
    
    Go 1.21 adds the support of Multipath TCP but it is only used if the application
    explicitly asked for it. This behavior can be controlled by the
    [`multipathtcp` setting](/pkg/net#Dialer.SetMultipathTCP).
    
    There is no plan to remove any of these settings.
    
    ### Go 1.20
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    ### Understand the question
    
    * Check if you can understand what is the **purpose** and use case of the person asking.
    
    * Then check if the question (the vast majority are questions) is **clear**.
    
    * In many cases the question asked is about an imaginary solution from the user, but there might be a **better** one. If you can understand the problem and use case better, you might be able to suggest a better **alternative solution**.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    		return
    	}
    
    	dataUsageInfoJSON, err := json.Marshal(dataUsageInfo)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	// Get capacity info when asked.
    	if r.Form.Get("capacity") == "true" {
    		sinfo := objectAPI.StorageInfo(ctx, false)
    		dataUsageInfo.TotalCapacity = GetTotalUsableCapacity(sinfo.Disks, sinfo)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  5. cmd/data-scanner.go

    		return true, 0
    	}
    
    	// For instance, an applied lifecycle means we remove/transitioned an object
    	// from the current deployment, which means we don't have to call healing
    	// routine even if we are asked to do via heal flag.
    	if action == lifecycle.NoneAction {
    		if i.heal.enabled {
    			done := globalScannerMetrics.time(scannerMetricHealCheck)
    			size = i.applyHealing(ctx, o, oi)
    			done()
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 47.4K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    					continue
    				}
    
    				ventry.ObjectV2.MetaSys[k] = []byte(v)
    			} else {
    				ventry.ObjectV2.MetaUser[k] = v
    			}
    		}
    
    		// If asked to save data.
    		if len(fi.Data) > 0 || fi.Size == 0 {
    			x.data.replace(fi.VersionID, fi.Data)
    		}
    
    		if fi.TransitionStatus != "" {
    			ventry.ObjectV2.MetaSys[metaTierStatus] = []byte(fi.TransitionStatus)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  7. RELEASE.md

    Yan Chen, Yan Facai (颜发才), Yi Yang, Yong Tang, Youssef Hesham, Yuan (Terry)
    Tang, Zhengsheng Wei, zxcqwe4906, 张志豪, 田传武
    
    We are also grateful to all who filed issues or helped resolve them, asked and
    answered questions, and were part of inspiring discussions.
    
    # Release 1.4.1
    
    ## Bug Fixes and Other Changes
    
    *   `LinearClassifier` fix.
    
    # Release 1.4.0
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  8. cmd/erasure-object.go

    		// we return from this function.
    		closeBitrotReaders(readers)
    		if err != nil {
    			// If we have successfully written all the content that was asked
    			// by the client, but we still see an error - this would mean
    			// that we have some parts or data blocks missing or corrupted
    			// - attempt a heal to successfully heal them for future calls.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
  9. cmd/erasure-server-pool.go

    		mtime2 := poolObjInfos[j].ObjInfo.ModTime
    		return mtime1.After(mtime2)
    	})
    
    	defPool := PoolObjInfo{Index: -1}
    	for _, pinfo := range poolObjInfos {
    		// skip all objects from suspended pools if asked by the
    		// caller.
    		if opts.SkipDecommissioned && z.IsSuspended(pinfo.Index) {
    			continue
    		}
    		// Skip object if it's from pools participating in a rebalance operation.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    	r.Header.Set("prefix", "")
    
    	// Set delimiter value for "s3:delimiter" policy conditionals.
    	r.Header.Set("delimiter", SlashSeparator)
    
    	// Check if we are asked to return prefix usage
    	enablePrefixUsage := r.Form.Get("prefix-usage") == "true"
    
    	isAllowedAccess := func(bucketName string) (rd, wr bool) {
    		if globalIAMSys.IsAllowed(policy.Args{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
Back to top