Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 180 for indirectly (0.54 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
    
        new_outputs = root.signatures['serving_default'](
            input_tensor=ops.convert_to_tensor(input_data)
        )
    
        # Indirectly tests that the model is not quantized by asserting that there
        # are negligible numeric difference.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.000001)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if GTEST_HAS_PTHREAD
    
    // Sleeps for (roughly) n milli-seconds.  This function is only for
    // testing Google Test's own constructs.  Don't use it in user tests,
    // either directly or indirectly.
    inline void SleepMilliseconds(int n) {
      const timespec time = {
        0,                  // 0 seconds.
        n * 1000L * 1000L,  // And n ms.
      };
      nanosleep(&time, NULL);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if GTEST_HAS_PTHREAD
    
    // Sleeps for (roughly) n milli-seconds.  This function is only for
    // testing Google Test's own constructs.  Don't use it in user tests,
    // either directly or indirectly.
    inline void SleepMilliseconds(int n) {
      const timespec time = {
        0,                  // 0 seconds.
        n * 1000L * 1000L,  // And n ms.
      };
      nanosleep(&time, NULL);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	// direct is the set of module paths for which we believe the module provides
    	// a package directly imported by a package or test in the main module.
    	//
    	// The "direct" map controls which modules are annotated with "// indirect"
    	// comments in the go.mod file, and may impact which modules are listed as
    	// explicit roots (vs. indirect-only dependencies). However, it should not
    	// have a semantic effect on the build list overall.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:requirements:shared_objects]]
    === Sharing mutable objects
    When storing a task to the configuration cache, all objects directly or indirectly referenced through the task's fields are serialized.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            expect:
            succeeds 'broken'
        }
    
        @Issue("https://github.com/gradle/configuration-cache/issues/97")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "does nag when service is used indirectly via another service even if task declares service reference and feature preview is enabled"() {
            given:
            serviceImplementation()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Synchronized.java

     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Synchronized.java

     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    		base.Fatalf("bad type for map key: %v", t)
    		return false
    	}
    }
    
    // Can this type be stored directly in an interface word?
    // Yes, if the representation is a single pointer.
    func IsDirectIface(t *Type) bool {
    	switch t.Kind() {
    	case TPTR:
    		// Pointers to notinheap types must be stored indirectly. See issue 42076.
    		return !t.Elem().NotInHeap()
    	case TCHAN,
    		TMAP,
    		TFUNC,
    		TUNSAFEPTR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    	} else {
    		o1 = uint32(val)
    		o2 = uint32(val >> 32)
    	}
    
    	// On AIX, TOC data accesses are always made indirectly against R2 (a sequence of addis+ld+load/store). If the
    	// The target of the load is known, the sequence can be written into addis+addi+load/store. On Linux,
    	// TOC data accesses are always made directly against R2 (e.g addis+load/store).
    	if target.IsAIX() {
    		if !strings.HasPrefix(ldr.SymName(rs), "TOC.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top