Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,360 for AsObject (0.39 sec)

  1. docs/sts/tls.md

    In case of certificate-based authentication, MinIO has to map the client-provided certificate to an S3 policy. MinIO does this via the subject common name field of the X.509 certificate. So, MinIO will associate a certificate with a subject `CN = foobar` to a S3 policy named `foobar`.
    
    The following self-signed certificate is issued for `consoleAdmin`. So, MinIO would associate it with the pre-defined `consoleAdmin` policy.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingHandlerTest.groovy

    import spock.lang.Specification
    import spock.lang.Subject
    
    class DefaultDependencyLockingHandlerTest extends Specification {
    
        def 'activates dependency locking on configurations'() {
            given:
            ConfigurationContainer container = Mock()
            Configuration configuration = Mock()
            ResolutionStrategy strategy = Mock()
            @Subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Subject)(nil), (*flowcontrol.Subject)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Subject_To_flowcontrol_Subject(a.(*v1.Subject), b.(*flowcontrol.Subject), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*flowcontrol.Subject)(nil), (*v1.Subject)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/UserInputRequestEventSerializerTest.groovy

     */
    
    package org.gradle.internal.logging.serializer
    
    
    import org.gradle.internal.logging.events.UserInputRequestEvent
    import spock.lang.Subject
    
    class UserInputRequestEventSerializerTest extends LogSerializerSpec {
    
        @Subject def serializer = new UserInputRequestEventSerializer()
    
        def "can serialize user input event"() {
            given:
            def event = new UserInputRequestEvent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleSource.java

     * <p>
     * Method rules declare the subject and any inputs as parameters to the method.
     * With the exception of {@link Model} methods, the subject of the rule is the, required, first parameter and all subsequent parameters are inputs.
     * For a non-void {@link Model} method, the subject (i.e. model element being created) is the return object.
     * For a void {@link Model} method, the subject is the first method parameter.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. pkg/apis/rbac/zz_generated.deepcopy.go

    func (in *Subject) DeepCopyInto(out *Subject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Subject.
    func (in *Subject) DeepCopy() *Subject {
    	if in == nil {
    		return nil
    	}
    	out := new(Subject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1beta1/zz_generated.deepcopy.go

    func (in *Subject) DeepCopyInto(out *Subject) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Subject.
    func (in *Subject) DeepCopy() *Subject {
    	if in == nil {
    		return nil
    	}
    	out := new(Subject)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_env.properties

    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = true
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = [Test]
    
    # The common return path of all mail
    mail.return.path = root@localhost
    
    
    # ========================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Aug 07 04:53:24 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/NoOpDependencyLockingProviderTest.groovy

     */
    
    package org.gradle.internal.locking
    
    import org.gradle.internal.Describables
    import spock.lang.Specification
    import spock.lang.Subject
    
    import static java.util.Collections.emptySet
    
    class NoOpDependencyLockingProviderTest extends Specification {
    
        @Subject
        def provider = NoOpDependencyLockingProvider.instance
    
        def 'does not find locked dependencies'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionListener.java

         */
        void beforeTransformExecution(Describable transform, Describable subject);
    
        /**
         * This method is call immediately after a transform has been executed.
         */
        void afterTransformExecution(Describable transform, Describable subject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top