Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 139 for mypair (0.28 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64error.s

    	CASPD	(R2, R3), (R2), (R9, R10)                        // ERROR "destination register pair must start from even register"
    	CASPD	(R2, R4), (R2), (R8, R9)                         // ERROR "source register pair must be contiguous"
    	CASPD	(R2, R3), (R2), (R8, R10)                        // ERROR "destination register pair must be contiguous"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

            build(existing(baseDir), "build")
            val jarPath = "$baseDir/build/libs/buildscript.jar"
            assertTrue(existing(jarPath).exists())
            return Pair(className, jarPath)
        }
    
        private
        fun buildKotlinJarForBuildScriptClasspath(classBody: String): Pair<String, String> {
            val baseDir = "buildscript"
            withDefaultSettingsIn(baseDir).appendText(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        internal
        fun readRootBuildStateFrom(
            stateFile: ConfigurationCacheStateFile,
            loadAfterStore: Boolean,
            graph: BuildTreeWorkGraph,
            graphBuilder: BuildTreeWorkGraphBuilder?
        ): Pair<String, BuildTreeWorkGraph.FinalizedGraph> {
            return readConfigurationCacheState(stateFile) { state ->
                state.run {
                    readRootBuildState(graph, graphBuilder, loadAfterStore)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/internal/pkgbits/decoder.go

    }
    
    // NewDecoder returns a Decoder for the given (section, index) pair,
    // and decodes the given SyncMarker from the element bitstream.
    func (pr *PkgDecoder) NewDecoder(k RelocKind, idx Index, marker SyncMarker) Decoder {
    	r := pr.NewDecoderRaw(k, idx)
    	r.Sync(marker)
    	return r
    }
    
    // TempDecoder returns a Decoder for the given (section, index) pair,
    // and decodes the given SyncMarker from the element bitstream.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  5. src/regexp/exec_test.go

    			// Process a single pair.  - means no submatch.
    			pair := res[i:j]
    			if pair == "-" {
    				out[n] = -1
    				out[n+1] = -1
    			} else {
    				loStr, hiStr, _ := strings.Cut(pair, "-")
    				lo, err1 := strconv.Atoi(loStr)
    				hi, err2 := strconv.Atoi(hiStr)
    				if err1 != nil || err2 != nil || lo > hi {
    					t.Fatalf("%s:%d: invalid pair %s", file, lineno, pair)
    				}
    				out[n] = lo
    				out[n+1] = hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/core/protobuf/struct.pb.h"
    
    namespace tensorflow {
    
    namespace {
    
    using StructuredValueDictEntry =
        protobuf::MapPair<std::string, StructuredValue>;
    
    using NamedParamMap =
        gtl::FlatMap<StringPiece, const TensorSpecProto*, StringPieceHasher>;
    
    Status AssertAllCreateResourceFunctionsHaveNoCaptures(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

    constexpr StringRef kCompositeFuncPrefix = "composite_";
    constexpr StringRef kEmptyNodeName = "_empty_node";
    
    // Returns a pair: `func_name` and `node_name` for the lifted function. In TF
    // quantizer, both are filled. For StableHLO quantizer, the func_name is only
    // filled and node_name is always set to "_empty_node".
    std::pair<std::string, std::string> GetFuncNameAndNodeName(
        TF::PartitionedCallOp call_op, const FlatSymbolRefAttr &f_attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/net/smtp/smtp_test.go

    			send("250-STARTTLS")
    			send("250 Ok")
    		case "STARTTLS":
    			send("220 Go ahead")
    			keypair, err := tls.X509KeyPair(localhostCert, localhostKey)
    			if err != nil {
    				return err
    			}
    			config := &tls.Config{Certificates: []tls.Certificate{keypair}}
    			c = tls.Server(c, config)
    			defer c.Close()
    			return serverHandleTLS(c, t)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

    #include "tensorflow/core/protobuf/struct.pb.h"
    #include "tensorflow/core/protobuf/trackable_object_graph.pb.h"
    
    namespace tensorflow {
    namespace internal {
    namespace {
    
    using StructuredValueDictEntry =
        protobuf::MapPair<std::string, StructuredValue>;
    
    // Maps from a Nodedef's name to its corresponding AttrValues, for a given
    // Graphdef
    using NodeAttrMap =
        gtl::FlatMap<StringPiece, const AttrValueMap*, StringPieceHasher>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  10. pkg/scheduler/testing/wrappers.go

    	return p
    }
    
    // Label sets a {k,v} pair to the inner pod label.
    func (p *PodWrapper) Label(k, v string) *PodWrapper {
    	if p.ObjectMeta.Labels == nil {
    		p.ObjectMeta.Labels = make(map[string]string)
    	}
    	p.ObjectMeta.Labels[k] = v
    	return p
    }
    
    // Labels sets all {k,v} pair provided by `labels` to the inner pod labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top