Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,773 for compared (0.12 sec)

  1. cluster/gce/list-resources.sh

    # limitations under the License.
    
    # Calls gcloud to print out a variety of Google Cloud Platform resources used by
    # Kubernetes. Can be run before/after test runs and compared to track leaking
    # resources.
    
    # PROJECT must be set in the environment.
    # If ZONE, KUBE_GCE_INSTANCE_PREFIX, CLUSTER_NAME, KUBE_GCE_NETWORK, or
    # KUBE_GKE_NETWORK is set, they will be used to filter the results.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. test/typeparam/mapsimp.dir/a.go

    	r := make([]V, 0, len(m))
    	for _, v := range m {
    		r = append(r, v)
    	}
    	return r
    }
    
    // Equal reports whether two maps contain the same key/value pairs.
    // Values are compared using ==.
    func Equal[K, V comparable](m1, m2 map[K]V) bool {
    	if len(m1) != len(m2) {
    		return false
    	}
    	for k, v1 := range m1 {
    		if v2, ok := m2[k]; !ok || v1 != v2 {
    			return false
    		}
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 22:17:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go

    }
    
    const (
    	// defaultGzipContentEncodingLevel is set to 1 which uses least CPU compared to higher levels, yet offers
    	// similar compression ratios (off by at most 1.5x, but typically within 1.1x-1.3x). For further details see -
    	// https://github.com/kubernetes/kubernetes/issues/112296
    	defaultGzipContentEncodingLevel = 1
    	// defaultGzipThresholdBytes is compared to the size of the first write from the stream
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/defaults.go

    	}
    	if obj.Spec.RevisionHistoryLimit == nil {
    		obj.Spec.RevisionHistoryLimit = new(int32)
    		*obj.Spec.RevisionHistoryLimit = 10
    	}
    }
    
    // SetDefaults_Deployment sets additional defaults compared to its counterpart
    // in extensions. These addons are:
    // - MaxUnavailable during rolling update set to 25% (1 in extensions)
    // - MaxSurge value during rolling update set to 25% (1 in extensions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/image/color/palette/gen.go

    				}
    			}
    		}
    	}
    	fmt.Fprintln(w, "// Plan9 is a 256-color palette that partitions the 24-bit RGB space")
    	fmt.Fprintln(w, "// into 4×4×4 subdivision, with 4 shades in each subcube. Compared to the")
    	fmt.Fprintln(w, "// WebSafe, the idea is to reduce the color resolution by dicing the")
    	fmt.Fprintln(w, "// color cube into fewer cells, and to use the extra space to increase the")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    *Precompiled Script Plugins* are Kotlin or Groovy DSL scripts compiled into Java class files packaged in a library.
    They offer better performance and maintainability compared to script plugins, and they can be reused across different projects.
    You can also write them in Groovy DSL but that is not recommended.
    
    *Binary Plugins* are full-fledged plugins written in Java, Groovy, or Kotlin, compiled into JAR files, and published to a repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1beta1/defaults.go

    				obj.Spec.UpdateStrategy.RollingUpdate.MaxUnavailable = ptr.To(intstr.FromInt32(1))
    			}
    		}
    	}
    }
    
    // SetDefaults_Deployment sets additional defaults compared to its counterpart
    // in extensions. These addons are:
    // - MaxUnavailable during rolling update set to 25% (1 in extensions)
    // - MaxSurge value during rolling update set to 25% (1 in extensions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/crypto/ed25519/ed25519vectors_test.go

    			case "LowOrderResidue":
    				expectedToVerify = false
    			// Our point decoding allows non-canonical encodings (in violation
    			// of RFC 8032) but R is not decoded: instead, R is recomputed and
    			// compared bytewise against the canonical encoding.
    			case "NonCanonicalR":
    				expectedToVerify = false
    			}
    		}
    
    		publicKey := decodeHex(t, v.A)
    		signature := append(decodeHex(t, v.R), decodeHex(t, v.S)...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/expr.go

    		base.Errorf("invalid operation: %v (%v cannot be compared)", n, l.Type())
    		return l, r, nil
    	}
    
    	if l.Type().IsSlice() && !ir.IsNil(l) && !ir.IsNil(r) {
    		base.Errorf("invalid operation: %v (slice can only be compared to nil)", n)
    		return l, r, nil
    	}
    
    	if l.Type().IsMap() && !ir.IsNil(l) && !ir.IsNil(r) {
    		base.Errorf("invalid operation: %v (map can only be compared to nil)", n)
    		return l, r, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. cmd/leak-detect_test.go

    		// wait a test again will deadline.
    		if UTCNow().Before(deadline) {
    			time.Sleep(leakDetectPauseTimeMs * time.Millisecond)
    			continue
    		}
    		// after the deadline time report all the difference in the latest snapshot compared with the initial one.
    		for _, g := range leaked {
    			t.Errorf("Leaked goroutine: %v", g)
    		}
    		return
    	}
    }
    
    // DetectTestLeak -  snapshots the currently running goroutines and returns a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top