Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for toGetter (0.12 sec)

  1. pkg/config/schema/codegen/collections.go

    			StatusImport:           toImport(r.StatusProtoPackage),
    			IstioAwareClientImport: toIstioAwareImport(r.ProtoPackage),
    			ClientGroupPath:        toGroup(r.ProtoPackage),
    			ClientGetter:           toGetter(r.ProtoPackage),
    			ClientTypePath:         toTypePath(r),
    			SpecType:               tname,
    		}
    		if r.StatusProtoPackage != "" {
    			e.StatusType = statName
    		}
    		entries = append(entries, e)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

            ":extra_files",
            ":test_utilities",
        ],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
            "cc",
            "json",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":importer_test_min_max",
            ":test_schema.fbs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Linkage.java

    /**
     * Specify how a native library should be linked into another binary.
     *
     * @since 4.5
     */
    public enum Linkage implements Named {
        /**
         * Statically link binaries together.
         */
        STATIC,
    
        /**
         * Dynamically link binaries together.
         */
        SHARED;
    
        @Override
        public String getName() {
            return name();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/compilation_unit.go

    // type from the sym package since loader imports sym.
    type LoaderSym uint32
    
    // A CompilationUnit represents a set of source files that are compiled
    // together. Since all Go sources in a Go package are compiled together,
    // there's one CompilationUnit per package that represents all Go sources in
    // that package, plus one for each assembly file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:39:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaIncompatiblePluginsIntegrationTest.groovy

    plugins {
        id 'java-platform'
        id '${plugin}'
    }
    """
            when:
            fails 'help'
    
            then:
            failureHasCause("The \"java\" or \"java-library\" plugin cannot be applied together with the \"java-platform\" plugin")
    
            where:
            plugin << ['java', 'java-library']
        }
    
        def "cannot apply both #plugin and java-platform"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tests/test_ambiguous_params.py

            return foo
    
        with pytest.raises(
            AssertionError,
            match=(
                "Cannot specify `Depends` in `Annotated` and default value"
                " together for 'foo'"
            ),
        ):
    
            @app.get("/")
            async def get2(foo: Annotated[int, Depends(dep)] = Depends(dep)):
                pass  # pragma: nocover
    
        with pytest.raises(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Dec 12 00:22:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top