Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 191 for toGetter (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/BooleanOptionElement.java

        }
    
        /**
         * Returns a comparator that groups opposite option pairs together.
         *
         * <p>Options are sorted in the natural order of their names,
         * except for disable options which are sorted after their opposite option.
         * For example, {@code "--foo"} and {@code "--no-foo"} are grouped together
         * and are sorted after {@code "--bar"} and {@code "--no-bar"}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 18 06:43:54 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. releasenotes/notes/47099.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 166 bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset/types.go

    	// protocol (default TCP) and zero protocol number cannot be used.
    	HashIPPortIP Type = "hash:ip,port,ip"
    	// HashIPPortNet represents the `hash:ip,port,net` type ipset.  The hash:ip,port,net set type uses a hash to store IP address, port number and IP network address triples.  The port
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/ifrt/BUILD

    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/tfrt:tf-tfrt-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 04:35:40 UTC 2023
    - 607 bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/clone_constants_for_better_clustering.h

    //    following graph:
    //
    //    digraph {
    //      Const -> GPU_1
    //      Const -> GPU_0_Y
    //      GPU_0_X -> GPU_0_Y
    //    }
    //
    //    We'd cluster Const and GPU_1 together (and place it on GPU_1), and this
    //    will block us from clustering GPU_0_X and GPU_0_Y together since that
    //    would increase the amount of work on GPU 0 waiting on work on GPU 1.
    //    However, cloning Const into two copies, one for GPU_0_Y and one for GPU_1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 23:57:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_inlining/BUILD

    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/BUILD

    licenses(["notice"])
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-mlir-translate",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 673 bytes
    - Viewed (0)
  8. pkg/test/framework/label/filter.go

    import (
    	"fmt"
    	"regexp"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    // Selector is a Set of label filter expressions that get applied together to decide whether tests should be selected
    // for execution or not.
    type Selector struct {
    	// The constraints are and'ed together.
    	present Set
    	absent  Set
    }
    
    var _ fmt.Stringer = Selector{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/e2e/BUILD

    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "cc",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/lite/experimental/tac:tac-translate",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 762 bytes
    - Viewed (0)
  10. src/debug/pe/pe.go

    	IMAGE_DIRECTORY_ENTRY_IAT            = 12
    	IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT   = 13
    	IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR = 14
    )
    
    // Values of IMAGE_FILE_HEADER.Characteristics. These can be combined together.
    const (
    	IMAGE_FILE_RELOCS_STRIPPED         = 0x0001
    	IMAGE_FILE_EXECUTABLE_IMAGE        = 0x0002
    	IMAGE_FILE_LINE_NUMS_STRIPPED      = 0x0004
    	IMAGE_FILE_LOCAL_SYMS_STRIPPED     = 0x0008
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 01:21:43 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top