Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,434 for Allows (0.24 sec)

  1. cluster/addons/metadata-proxy/README.md

    # Metadata proxy
    ==============
    
    This metadata proxy returns a 403 for kubelet's kube-env data, but otherwise allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 31 23:23:11 UTC 2017
    - 153 bytes
    - Viewed (0)
  2. docs/metrics/README.md

    Read more on how to use these endpoints in [MinIO healthcheck guide](https://github.com/minio/minio/blob/master/docs/metrics/healthcheck/README.md).
    
    ## Prometheus Probe
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

    	return nil
    }
    
    // Convert_Slice_string_To_v1_IncludeObjectPolicy allows converting a URL query parameter value
    func Convert_Slice_string_To_v1_IncludeObjectPolicy(in *[]string, out *IncludeObjectPolicy, s conversion.Scope) error {
    	if len(*in) > 0 {
    		*out = IncludeObjectPolicy((*in)[0])
    	}
    	return nil
    }
    
    // Convert_url_Values_To_v1_DeleteOptions allows converting a URL to DeleteOptions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 26 03:49:57 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FunctionSemantics.kt

                interface Required : ConfigureBlockRequirement
    
                val allows: Boolean
                    get() = this !is NotAllowed
    
                val requires: Boolean
                    get() = this is Required
    
                fun isValidIfLambdaIsPresent(isPresent: Boolean): Boolean = when {
                    isPresent -> allows
                    else -> !requires
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:43:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    func NewMockManager(ctrl *gomock.Controller) *MockManager {
    	mock := &MockManager{ctrl: ctrl}
    	mock.recorder = &MockManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockManager) EXPECT() *MockManagerMockRecorder {
    	return m.recorder
    }
    
    // IsUnderDiskPressure mocks base method.
    func (m *MockManager) IsUnderDiskPressure() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. okcurl/README.md

    OkCurl
    ======
    
    _A curl for the next-generation web._
    
    OkCurl is an OkHttp-backed curl clone which allows you to test OkHttp's HTTP engine (including
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 09 21:19:04 UTC 2016
    - 178 bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/encoding/binary/60023.md

    The new [Encode] and [Decode] functions are byte slice equivalents
    to [Read] and [Write].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:58:26 UTC 2024
    - 157 bytes
    - Viewed (0)
  8. pkg/flag/flag.go

    	case *time.Duration:
    		fs.DurationVarP(d, name, shorthand, *d, usage)
    	case *uint16:
    		fs.Uint16VarP(d, name, shorthand, *d, usage)
    	}
    }
    
    // BindEnv behaves like Bind, but additionally allows an environment variable to override.
    // This will transform to name field: foo-bar becomes FOO_BAR.
    func BindEnv[T Flaggable](fs *pflag.FlagSet, name, shorthand, usage string, val *T) {
    	Bind(fs, name, shorthand, usage, val)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/authz/path-precedence.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}-deny
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: DENY
      rules:
        - to:
            - operation:
                paths: ["/allow/admin"]
    ---
    # The following policy allows access to path with prefix /allow.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 689 bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/SerializableTester.java

     * object is equal to the original.
     *
     * <p><b>GWT warning:</b> Under GWT, both methods simply returns their input, as proper GWT
     * serialization tests require more setup. This no-op behavior allows test authors to intersperse
     * {@code SerializableTester} calls with other, GWT-compatible tests.
     *
     * @author Mike Bostock
     * @since 10.0
     */
    @GwtCompatible // but no-op!
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top