Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for ripples (0.1 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    // TestUnknownFields checks for the collection of unknown
    // field errors from the various possible locations of
    // unknown fields (e.g. fields on struct, inlined struct, slice, etc)
    func TestUnknownFields(t *testing.T) {
    	// simples checks that basic unknown fields are found
    	// in fields, subfields and slices.
    	var simplesData = `{
    "ca": [
    	{
    		"aa": 1,
    		"ab": "ab",
    		"ac": true,
    		"unknown1": 24
    	}
    ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. docs/fr/docs/async.md

    # Concurrence et les mots-clés async et await
    
    Cette page vise à fournir des détails sur la syntaxe `async def` pour les *fonctions de chemins* et quelques rappels sur le code asynchrone, la concurrence et le parallélisme.
    
    ## Vous êtes pressés ?
    
    <abbr title="'too long; didn't read' en anglais, ou 'trop long ; j'ai pas lu'"><strong>TL;DR :</strong></abbr>
    
    Si vous utilisez des bibliothèques tierces qui nécessitent d'être appelées avec `await`, telles que :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            // Skip the Requantize op and set the user to the following dequantize
            // op. This happens when the quantizer tries to match the scale conflict
            // with QuantizeOp - QuantizeOp(requant) - DequantizeOp triples. The
            // correct float op should be the user of the last DequantizeOp.
            if (llvm::isa<QuantizeOpT>(user)) {
              user = *user->getResult(0).getUsers().begin();
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    dependencies {
       api project('my-utils')
       implementation 'com.google.guava:guava:21.0'
    }
    ----
    ====
    
    This can significantly reduce the "ripple" of recompilations caused by a single change in
    large multi-project builds.
    
    == Improve the performance of older Gradle releases
    
    Some projects cannot easily upgrade to a current Gradle version. While you should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertSame(comparator, comparator.reverse());
    
        assertEquals(0, comparator.compare(null, null));
        assertEquals(0, comparator.compare(new Object(), new Object()));
        assertEquals(0, comparator.compare("apples", "oranges"));
        assertSame(comparator, reserialize(comparator));
        assertEquals("Ordering.allEqual()", comparator.toString());
    
        List<String> strings = ImmutableList.of("b", "a", "d", "c");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top