Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 663 for toGetter (0.14 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. src/math/bits/example_math_test.go

    	n2 := []uint32{0, 12}
    	// Multiply them together without producing overflow.
    	hi, lo := bits.Mul32(n1[1], n2[1])
    	nsum := []uint32{hi, lo}
    	fmt.Printf("%v * %v = %v\n", n1[1], n2[1], nsum)
    
    	// First number is 0<<32 + 2147483648
    	n1 = []uint32{0, 0x80000000}
    	// Second number is 0<<32 + 2
    	n2 = []uint32{0, 2}
    	// Multiply them together producing overflow.
    	hi, lo = bits.Mul32(n1[1], n2[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 21:27:05 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/BUILD

        test_file_exts = ["pbtxt"],
    )
    
    # 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",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 905 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/BUILD

        },
        test_file_exts = ["pbtxt"],
    )
    
    # 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",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/BUILD

            "add.pbtxt": ["no_rocm"],
            "conv_2d.pbtxt": ["no_rocm"],
            "fake_quant_per_channel.pbtxt": ["no_rocm"],
        },
        test_file_exts = [
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/lite:flatbuffer_to_string",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/lite/tests/debuginfo/BUILD

        test_file_exts = [
            "pbtxt",
            #        "py", TODO(b/150304798)
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
        name = "debug_info_files",
        srcs = glob(
            ["**/*.debug"],
        ),
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 26 21:40:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. security/pkg/pki/util/keycertbundle.go

    		privKeyBytes:   []byte{},
    		privKey:        nil,
    		certChainBytes: []byte{},
    		rootCertBytes:  rootCertBytes,
    	}, nil
    }
    
    // GetAllPem returns all key/cert PEMs in KeyCertBundle together. Getting all values together avoids inconsistency.
    func (b *KeyCertBundle) GetAllPem() (certBytes, privKeyBytes, certChainBytes, rootCertBytes []byte) {
    	b.mutex.RLock()
    	certBytes = copyBytes(b.certBytes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. 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)
Back to top