Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,261 for supportsL7 (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                    DefaultCompositeModel(DefaultModel nested) { this.nested = nested }
                    BaseModel getNested() { nested }
                }
            """
        }
    
        def "supports model polymorphism"() {
            given:
            file("plugins/src/main/groovy/my/MyModelBuilder.groovy") << """
                package my
    
                import org.gradle.tooling.provider.model.ToolingModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/dataclasses.md

    # Using Dataclasses
    
    FastAPI is built on top of **Pydantic**, and I have been showing you how to use Pydantic models to declare requests and responses.
    
    But FastAPI also supports using <a href="https://docs.python.org/3/library/dataclasses.html" class="external-link" target="_blank">`dataclasses`</a> the same way:
    
    ```Python hl_lines="1  7-12  19-20"
    {!../../../docs_src/dataclasses/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    
    // Adds passes which transform TF_XlaCallModule Op to StableHLO Ops.
    // Note that this pass only supports static shape tensors for now.
    std::unique_ptr<mlir::OperationPass<ModuleOp>>
    CreateLegalizeTFXlaCallModuleToStablehloPass();
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 16:36:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FixedFileCollectionExecutionTimeValue.groovy

    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    
    class FixedFileCollectionExecutionTimeValue extends Specification {
    
        def "FixedFileCollection supports execution time value"() {
            given:
            def collection = fileCollectionFactory().fixed("foo", new File("foo.txt"))
    
            when:
            def executionTimeValue = collection.calculateExecutionTimeValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cni/pkg/plugin/sidecar_iptables_unspecified.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    import "errors"
    
    // ErrNotImplemented is returned when a requested feature is not implemented.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/testenv/testenv_notwin.go

    		return false, ""
    	case "android", "wasip1":
    		// For wasip1, some runtimes forbid absolute symlinks,
    		// or symlinks that escape the current working directory.
    		// Perform a simple test to see whether the runtime
    		// supports symlinks or not. If we get a permission
    		// error, the runtime does not support symlinks.
    		dir, err := os.MkdirTemp("", "")
    		if err != nil {
    			return false, ""
    		}
    		defer func() {
    			_ = os.RemoveAll(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. docs/ftp/README.md

    # MinIO FTP/SFTP Server
    
    MinIO natively supports FTP/SFTP protocol, this allows any ftp/sftp client to upload and download files.
    
    Currently supported `FTP/SFTP` operations are as follows:
    
    | ftp-client commands | supported |
    |:-------------------:|:----------|
    | get                 | yes       |
    | put                 | yes       |
    | ls                  | yes       |
    | mkdir               | yes       |
    | rmdir               | yes       |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/Platform.java

    import java.util.Locale;
    
    /**
     * This class is emulated in GWT.
     *
     * @author Hayward Chan
     */
    @GwtCompatible
    final class Platform {
    
      /** Format the template with args, only supports the placeholder {@code %s}. */
      static String format(String template, Object... args) {
        return String.format(Locale.ROOT, template, args);
      }
    
      /** See {@link ListListIteratorTester} */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaPluginExtension.java

        /**
         * The version of the Zinc compiler to use for compiling Scala code.
         * <p>
         *     Default version is Zinc {@value ScalaBasePlugin#DEFAULT_ZINC_VERSION}.
         * </p>
         *
         * Gradle supports Zinc from 1.6.0.
         *
         * @return zinc compiler version
         * @since 6.0
         */
        Property<String> getZincVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_windows.go

    package options
    
    import (
    	"fmt"
    	"syscall"
    )
    
    func permitPortReuse(network, address string, c syscall.RawConn) error {
    	return fmt.Errorf("port reuse is not supported on Windows")
    }
    
    // Windows supports SO_REUSEADDR, but it may cause undefined behavior, as
    // there is no protection against port hijacking.
    func permitAddressReuse(network, addr string, conn syscall.RawConn) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top