Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 221 for supportsL7 (0.39 sec)

  1. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>
                Flags this Mojo as requiring information about the dependencies that would make up the specified class
                path. As the name suggests, this is similar to requiresDependencyResolution and supports the same values.
                The important difference is this will not resolve the files for the dependencies, i.e. the artifacts
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. internal/http/transports.go

    	tr.TLSHandshakeTimeout = 15 * time.Second
    
    	return func() http.RoundTripper {
    		return tr
    	}
    }
    
    // NewCustomHTTPProxyTransport is used only for proxied requests, specifically
    // only supports HTTP/1.1
    func (s ConnSettings) NewCustomHTTPProxyTransport() func() *http.Transport {
    	s.EnableHTTP2 = false
    	tr := s.getDefaultTransport(0)
    
    	// Settings specific to proxied requests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            def module = registry.getModule("gradle-some-module")
            module.allRequiredModules as List == [module, registry.getModule("gradle-module-2"), registry.getModule("gradle-module-3")]
        }
    
        def "supports cycles between modules"() {
            given:
            def module1Dir = createModule("module-1", properties(projects: 'gradle-module-2'))
            def module2Dir = createModule("module-2", properties(projects: 'gradle-module-1'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/net/smtp/smtp.go

    		code, msg64, err = c.cmd(0, "%s", resp64)
    	}
    	return err
    }
    
    // Mail issues a MAIL command to the server using the provided email address.
    // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
    // parameter. If the server supports the SMTPUTF8 extension, Mail adds the
    // SMTPUTF8 parameter.
    // This initiates a mail transaction and is followed by one or more [Client.Rcpt] calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

    import spock.lang.Issue
    
    class RuntimePluginValidationIntegrationTest extends AbstractIntegrationSpec implements RuntimePluginValidationTrait, ValidationMessageChecker {
    
        def "supports recursive types"() {
            groovyTaskSource << """
                import org.gradle.api.*
                import org.gradle.api.tasks.*
    
                class MyTask extends DefaultTask {
                    @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"encoding/json"
    	"time"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    )
    
    // Time is a wrapper around time.Time which supports correct
    // marshaling to YAML and JSON.  Wrappers are provided for many
    // of the factory methods that the time package offers.
    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/VersionNumber.java

    import com.google.common.base.Objects;
    import com.google.common.collect.Ordering;
    
    import javax.annotation.Nullable;
    import java.util.Locale;
    
    /**
     * Represents, parses, and compares version numbers. Supports a couple of different schemes: <ul> <li>MAJOR.MINOR.MICRO-QUALIFIER (the default).</li> <li>MAJOR.MINOR.MICRO.PATCH-QUALIFIER.</li> </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                .map(problem -> problem.getDefinition().getSeverity() + ": " + TypeValidationProblemRenderer.renderMinimalInformationAbout(problem));
        }
    
        /**
         * A type adapter factory for {@link Throwable} that supports serializing and deserializing {@link Throwable} instances to JSON using GSON.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. RELEASE.md

        *   Add `RFFT2D` as builtin op. (`RFFT2D` also supports `RFFTD`.) Currently
            only supports float32 input.
        *   Add 5D support to `SLICE` op.
        *   TFLite Supports SingatureDef:
            *   TFLiteConverter exports models with SignatureDef
            *   Interpreter supports getting a list of signatures and getting
                callable function for a given signaturedef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/plugin.go

    	call := flexPlugin.NewDriverCall(initCmd)
    	ds, err := call.Run()
    	if err != nil {
    		return nil, err
    	}
    	flexPlugin.capabilities = *ds.Capabilities
    
    	if flexPlugin.capabilities.Attach {
    		// Plugin supports attach/detach, so return flexVolumeAttachablePlugin
    		return &flexVolumeAttachablePlugin{flexVolumePlugin: flexPlugin}, nil
    	}
    	return flexPlugin, nil
    }
    
    // Init is part of the volume.VolumePlugin interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top