Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 594 for Unset (0.04 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	"namespace":               "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n-...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_unset.txt

    # Test that we can unset variables, even if initially invalid,
    # as long as resulting config is valid.
    
    env GOENV=badenv
    env GOOS=
    env GOARCH=
    env GOEXPERIMENT=
    
    ! go env
    stderr '^go(\.exe)?: unknown GOEXPERIMENT badexp$'
    
    go env -u GOEXPERIMENT
    
    ! go env
    stderr '^go: unsupported GOOS/GOARCH pair bados/badarch$'
    
    ! go env -u GOOS
    stderr '^go: unsupported GOOS/GOARCH pair \w+/badarch$'
    
    ! go env -u GOARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 553 bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/ReferenceEntry.java

     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    interface ReferenceEntry<K, V> {
      /** Returns the value reference from this entry. */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

     */
    class Settings {
      /** Bitfield of which flags that values. */
      private var set: Int = 0
    
      /** Flag values. */
      private val values = IntArray(COUNT)
    
      /** Returns -1 if unset. */
      val headerTableSize: Int
        get() {
          val bit = 1 shl HEADER_TABLE_SIZE
          return if (bit and set != 0) values[HEADER_TABLE_SIZE] else -1
        }
    
      val initialWindowSize: Int
        get() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/diff/diff.go

    	}
    	w.Flush()
    	return buf.String()
    }
    
    // IgnoreUnset is an option that ignores fields that are unset on the right
    // hand side of a comparison. This is useful in testing to assert that an
    // object is a derivative.
    func IgnoreUnset() cmp.Option {
    	return cmp.Options{
    		// ignore unset fields in v2
    		cmp.FilterPath(func(path cmp.Path) bool {
    			_, v2 := path.Last().Values()
    			switch v2.Kind() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// line breaks. The message must not contain line breaks.
    	// If unset, the message is "failed rule: {Rule}".
    	// e.g. "must be a URL with the host matching spec.host"
    	// If the Expression contains line breaks. Message is required.
    	// The message must not contain line breaks.
    	// If unset, the message is "failed Expression: {Expression}".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //
      // - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
      // field results in a configuration error.
      //
      // - If `paramKind` is namespace-scoped, the namespace of the object being
      // evaluated for admission will be used when this field is left unset. Take
      // care that if this is left empty the binding must not match any cluster-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	//   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
    	//   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
    	//   bookmark event is send when the state is synced at least to the moment
    	//   when request started being processed.
    	// - `resourceVersionMatch` set to any other value or unset
    	//   Invalid error is returned.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. test-site/activator

                         (-J is stripped)
    
      # environment variables (read from context)
      JAVA_OPTS          Environment variable, if unset uses ""
      SBT_OPTS           Environment variable, if unset uses ""
      ACTIVATOR_OPTS     Environment variable, if unset uses ""
    
    In the case of duplicated or conflicting options, the order above
    shows precedence: environment variables lowest, command line options highest.
    EOM
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  10. test-site/activator.bat

        echo.
        echo Environment variables ^(read from context^):
        echo JAVA_OPTS          Environment variable, if unset uses ""
        echo SBT_OPTS           Environment variable, if unset uses ""
        echo ACTIVATOR_OPTS     Environment variable, if unset uses ""
        echo.
        echo Please note that in order for Activator to work you must have Java available on the classpath
        echo.
        goto :end
      )
    )
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
Back to top