Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,960 for usedBy (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // DT_FLOAT, DT_HALF, DT_QINT8, and DT_QUINT8. When DT_HALF is used, the
      // `weight_quantization` flag needs to set to true. When DT_QUINT8 is used,
      // the `weight_quantization` flag needs to set to false.
      tensorflow::DataType inference_type = tensorflow::DT_FLOAT;
    
      // The input and output data type during inference. This flag is only used
      // when `inference_type` is different from DT_FLOAT. This flag can only be set
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    Used for executing the application.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to run the application.
    
    The following configurations are used by the application itself:
    
    `swiftCompile__Variant__` (e.g. `swiftCompileDebug` and `swiftCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.proto

      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
      // CanonicalRevision for the workload. Used for telemetry.
      string canonical_revision = 11;
      // WorkloadType represents the type of the workload. Used for telemetry.
      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/doc.go

    of the expected endian order. If 'BR' is used then zero extend is assumed.
    
    Memory references n(Ra) indicate the address in Ra + n. When used with an update form
    of an opcode, the value in Ra is incremented by n.
    
    Memory references (Ra+Rb) or (Ra)(Rb) indicate the address Ra + Rb, used by indexed
    loads or stores. Both forms are accepted. When used with an update then the base register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13333")
        def "absent #operator orElse #orElseKind used as task input"() {
    
            assumeFalse(
                'task dependency inference for orElse(taskOutput) not implemented yet!',
                orElseKind == 'task output'
            )
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Used for executing the application.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to run the application.
    
    The following configurations are used by the application itself:
    
    `cppCompile__Variant__` (e.g. `cppCompileDebug` and `cppCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         *
         * @return the set of filters to be used for sanitizing test stack traces
         */
        Set<TestStackTraceFilter> getStackTraceFilters();
    
        /**
         * Sets the set of filters to be used for sanitizing test stack traces.
         *
         * @param stackTraces the set of filters to be used for sanitizing test stack traces
         * @since 4.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/Types.java

      }
    
      private static void disallowPrimitiveType(Type[] types, String usedAs) {
        for (Type type : types) {
          if (type instanceof Class) {
            Class<?> cls = (Class<?>) type;
            checkArgument(!cls.isPrimitive(), "Primitive type '%s' used as %s", cls, usedAs);
          }
        }
      }
    
      /** Returns the {@code Class} object of arrays with {@code componentType}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/reloctype.go

    	R_CALLARM
    	R_CALLARM64
    	R_CALLIND
    	R_CALLPOWER
    	// R_CALLMIPS (only used on mips64) resolves to non-PC-relative target address
    	// of a CALL (JAL) instruction, by encoding the address into the instruction.
    	R_CALLMIPS
    	R_CONST
    	R_PCREL
    	// R_TLS_LE, used on 386, amd64, and ARM, resolves to the offset of the
    	// thread-local symbol from the thread local base and is used to implement the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                fsObj.free = f.getFreeSpace();
                fsObj.total = f.getTotalSpace();
                fsObj.usable = f.getUsableSpace();
                fsObj.used = fsObj.total - fsObj.usable;
                fsObj.percent = (short) (100 * fsObj.used / fsObj.total);
                return fsObj;
            }).toArray(n -> new FsObj[n]);
        }
    
        private JvmObj getJvmObj() {
            final JvmObj jvmObj = new JvmObj();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top