Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 353 for flavor3 (0.22 sec)

  1. guava-gwt/test/com/google/common/escape/testing/Testing.gwt.xml

        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentInternal.java

         * declaring child components, which contribute their variants as defined by this method, as remote variants in GMM.
         * <p>
         * This method and {@link UsageContext} should both be deprecated in favor of a new public API.
         */
        Set<? extends UsageContext> getUsages();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 17:57:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/Bzip2Archiver.java

            return "bzip2:";
        }
    
        public static ArchiveOutputStreamFactory getCompressor() {
            // this is not very beautiful but at some point we will
            // get rid of ArchiveOutputStreamFactory in favor of the writable Resource
            return destination -> {
                OutputStream outStr = new BufferedOutputStream(new FileOutputStream(destination));
                try {
                    outStr.write('B');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 09 16:47:29 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  4. cluster/gce/windows/configure.ps1

      )
    
      $url = ("http://metadata.google.internal/computeMetadata/v1/instance/" +
              "attributes/$Key")
      try {
        $client = New-Object Net.WebClient
        $client.Headers.Add('Metadata-Flavor', 'Google')
        return ($client.DownloadString($url)).Trim()
      }
      catch [System.Net.WebException] {
        if ($Default) {
          return $Default
        }
        else {
          Write-Host "Failed to retrieve value for $Key."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. guava-gwt/test/com/google/common/collect/testing/google/Google.gwt.xml

        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/link.go

    	buf.WriteString("![")
    	(*Link)(x).printRemainingMarkdown(buf)
    }
    
    func (x *Image) PrintText(buf *bytes.Buffer) {
    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    // GitHub Flavored Markdown autolinks extension
    // https://github.github.com/gfm/#autolinks-extension-
    
    // autoLinkMore rewrites any extended autolinks in the body
    // and returns the result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. guava-gwt/src/com/google/common/net/Net.gwt.xml

        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. guava-gwt/test/com/google/common/collect/testing/Testing.gwt.xml

        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskIntegrationTest.groovy

     */
    @SuppressWarnings('GrDeprecatedAPIUsage')
    @UnsupportedWithConfigurationCache(
        because = "AbstractReportTask has been deprecated in favor of ProjectBasedReportTask with supports the configuration cache."
    )
    class AbstractReportTaskIntegrationTest extends AbstractIntegrationSpec {
    
        def "can extend AbstractReportTask"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 30 18:37:41 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

    namespace mlir {
    namespace TFL {
    namespace tac {
    class TacModule;
    
    // Create an instance of the TargetAnnotationPass.
    // TODO(b/177376459): Remove in favor of the one below.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTargetAnnotationPass(
        llvm::ArrayRef<std::string> device_specs);
    
    // Create and instance of TargetAnnotationPass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top