Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 288 for mypair (0.07 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          return cluster_name ? *cluster_name : "[none]";
        }
    
        std::pair<absl::string_view, std::optional<absl::string_view>> AsPair()
            const {
          return {node_name, cluster_name};
        }
    
        bool operator<(const EdgeInfo& other) const {
          return AsPair() < other.AsPair();
        }
      };
    
      using EdgeInfoMap = std::map<absl::string_view, std::map<EdgeInfo, int64_t>>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/java/org/gradle/internal/classpath/TestInstrumentedClassLoader.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classpath;
    
    import org.gradle.api.file.RelativePath;
    import org.gradle.internal.Pair;
    import org.gradle.internal.classloader.TransformingClassLoader;
    import org.gradle.internal.classpath.transforms.ClassTransform;
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

                if (rightValue == null) {
                    setDiff.leftOnly.add(leftEntry.getValue());
                } else {
                    Pair<T, T> pair = Pair.of(leftEntry.getValue(), rightValue);
                    setDiff.common.add(pair);
                }
            }
    
            for (T rightValue : indexedRight.values()) {
                setDiff.rightOnly.add(rightValue);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.cc

        const absl::flat_hash_map<absl::string_view, int>& histogram) {
      for (const auto& pair : histogram) {
        XlaAutoClusteringSummary::OpAndCount* new_entry = result->Add();
        new_entry->set_op(std::string(pair.first));
        new_entry->set_count(pair.second);
      }
    
      absl::c_sort(*result, [](const XlaAutoClusteringSummary::OpAndCount& a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            // Find failure section
            Pair<LogContent, LogContent> match = withoutDebug.splitOnFirstMatchingLine(FAILURE_PATTERN);
            if (match == null) {
                // Not present in output, check error output.
                match = LogContent.of(error).ansiCharsToPlainText().removeDebugPrefix().splitOnFirstMatchingLine(FAILURE_PATTERN);
                if (match != null) {
                    match = Pair.of(withoutDebug, match.getRight());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.app.service.FailureUrlService;
    import org.codelibs.fess.crawler.builder.RequestDataBuilder;
    import org.codelibs.fess.crawler.client.CrawlerClient;
    import org.codelibs.fess.crawler.entity.RequestData;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

    import org.gradle.api.internal.specs.ExplainingSpecs;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.api.specs.Spec;
    import org.gradle.internal.Pair;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.logging.progress.ProgressLogger;
    import org.gradle.internal.logging.progress.ProgressLoggerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			delete(gvksToInvalidFiles, gvk)
    		}
    	}
    
    	type pair struct {
    		old *unstructured.Unstructured
    		new *unstructured.Unstructured
    	}
    
    	// For each valid file, match it with every invalid file of the same GVK
    	validXValidPairs := []pair{}
    	validXInvalidPairs := []pair{}
    	invalidXInvalidPairs := []pair{}
    
    	for gvk, valids := range gvksToValidFiles {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. internal/config/certs.go

    	}
    
    	if len(x509Certs) == 0 {
    		return nil, ErrTLSUnexpectedData(nil).Msg("Empty public certificate file %s", certFile)
    	}
    
    	return x509Certs, nil
    }
    
    // LoadX509KeyPair - load an X509 key pair (private key , certificate)
    // from the provided paths. The private key may be encrypted and is
    // decrypted using the ENV_VAR: MINIO_CERT_PASSWD.
    func LoadX509KeyPair(certFile, keyFile string) (tls.Certificate, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/TestWithTempFiles.kt

        protected
        fun newFolder(vararg folderNames: String): File =
            tempFolder.testDirectory.createDir(folderNames.joinToString(File.separator))
    
        protected
        fun withZip(fileName: String, entries: Sequence<Pair<String, ByteArray>>): File =
            newFile(fileName).also {
                zipTo(it, entries)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top