Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for combinations (0.21 sec)

  1. configure.py

                 'compilation to reduce the compilation time?'),
          'Eigen strong inline overridden.', 'Not overriding eigen strong inline, '
          'some compilations could take more than 20 mins.'):
        # Due to a known MSVC compiler issue
        # https://github.com/tensorflow/tensorflow/issues/10521
        # Overriding eigen strong inline speeds up the compiling of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg.setenv("GOARCH", "amd64")
    	tg.run("generate", "gen")
    	tg.grepStdout("linux amd64", "unexpected GOOS/GOARCH combination")
    
    	tg.setenv("GOOS", "darwin")
    	tg.setenv("GOARCH", "arm64")
    	tg.run("generate", "gen")
    	tg.grepStdout("darwin arm64", "unexpected GOOS/GOARCH combination")
    }
    
    func TestGoEnv(t *testing.T) {
    	tg := testgo(t)
    	tg.parallel()
    	defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

     * net.javacrumbs.futureconverter.java8guava.FutureConverter}</a>.
     *
     * <h2>More on {@code CacheBuilder}</h2>
     *
     * {@code CacheBuilder} builds caches with any combination of the following features:
     *
     * <ul>
     *   <li>automatic loading of entries into the cache
     *   <li>least-recently-used eviction when a maximum size is exceeded (note that the cache is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          op->removeAttr(
              StringAttr::get(op->getContext(), kXlaOutsideCompilationAttr));
        }
      });
    }
    
    // The results of parallel executes is the combination of return values from
    // both host and device.
    llvm::SmallVector<Type, 4> GetParallelExecuteResultsTypes(
        ArrayRef<Value> return_value_from_host,
        ArrayRef<Value> return_value_from_device) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    		// might be able to change the goroutine count without interacting with
    		// the scheduler. For code like that, the race windows are small and the
    		// combination of features is uncommon, so it's hard to be (and remain)
    		// sure we've caught them all.
    	}
    
    	semrelease(&goroutineProfile.sema)
    	return n, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    				timeout:   1 * time.Minute,
    				runOnHost: true,
    			})
    	}
    
    	// Only run the API check on fast development platforms.
    	// Every platform checks the API on every GOOS/GOARCH/CGO_ENABLED combination anyway,
    	// so we really only need to run this check once anywhere to get adequate coverage.
    	// To help developers avoid trybot-only failures, we try to run on typical developer machines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// certificate. In this mode, TLS is susceptible to machine-in-the-middle
    	// attacks unless custom verification is used. This should be used only for
    	// testing or in combination with VerifyConnection or VerifyPeerCertificate.
    	InsecureSkipVerify bool
    
    	// CipherSuites is a list of enabled TLS 1.0–1.2 cipher suites. The order of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

        return new FutureCombiner<>(true, ImmutableList.copyOf(futures));
      }
    
      /**
       * A helper to create a new {@code ListenableFuture} whose result is generated from a combination
       * of input futures.
       *
       * <p>See {@link #whenAllComplete} and {@link #whenAllSucceed} for how to instantiate this class.
       *
       * <p>Example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

        JUnit 5 = JUnit Platform + JUnit Jupiter + JUnit Vintage
    
    The JUnit Platform serves as a foundation for launching testing frameworks on the JVM. JUnit Jupiter is the combination of the new http://junit.org/junit5/docs/current/user-guide/#writing-tests[programming model]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. src/time/time.go

    			sec += int64(l.cacheZone.offset)
    		} else {
    			_, offset, _, _, _ := l.lookup(sec)
    			sec += int64(offset)
    		}
    	}
    	return uint64(sec + (unixToInternal + internalToAbsolute))
    }
    
    // locabs is a combination of the Zone and abs methods,
    // extracting both return values from a single zone lookup.
    func (t Time) locabs() (name string, offset int, abs uint64) {
    	l := t.loc
    	if l == nil || l == &localLoc {
    		l = l.get()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top