Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for CONSTRUCTOR (0.11 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                    ?: getTypeAliasByClassId(classId)
                    ?: error("Class-like symbol is not found by '$classId'")
    
                val samConstructor = symbol.getSamConstructor() ?: error("SAM constructor is not found for symbol '$symbol'")
                return listOf(samConstructor)
            }
        }
    
        companion object {
            val identifiers = arrayOf(
                "package:",
                "callable:",
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

            this.stats = stats;
            this.strategy = strategy;
            this.logger = logger;
        }
    
        @Override
        public DaemonExpirationResult checkExpiration() {
            // We cannot check this in the constructor since system properties are copied to the daemon after initialization.
            if (!Boolean.parseBoolean(System.getProperty(ENABLE_PERFORMANCE_MONITORING, "true"))) {
                return DaemonExpirationResult.NOT_TRIGGERED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

              LiftQuantizableSpotsAsFunctionsPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(
          LiftQuantizableSpotsAsFunctionsPass)
    
      LiftQuantizableSpotsAsFunctionsPass() = default;
    
      // Constructor with explicit user-provided `QuantizationSpecs`.
      explicit LiftQuantizableSpotsAsFunctionsPass(
          QuantizationSpecs quantization_specs)
          : quantization_specs_(std::move(quantization_specs)) {}
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/net/tcpsock_posix.go

    }
    
    func selfConnect(fd *netFD, err error) bool {
    	// If the connect failed, we clearly didn't connect to ourselves.
    	if err != nil {
    		return false
    	}
    
    	// The socket constructor can return an fd with raddr nil under certain
    	// unknown conditions. The errors in the calls there to Getpeername
    	// are discarded, but we can't catch the problem there because those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

      private val runningAsyncCalls = ArrayDeque<AsyncCall>()
    
      /** Running synchronous calls. Includes canceled calls that haven't finished yet. */
      private val runningSyncCalls = ArrayDeque<RealCall>()
    
      constructor(executorService: ExecutorService) : this() {
        this.executorServiceOrNull = executorService
      }
    
      internal fun enqueue(call: AsyncCall) {
        this.withLock {
          readyAsyncCalls.add(call)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    - expose a property named "`name`" as the unique, and constant, name for the object. The `domainObjectContainer(Class)`
    variant of the method creates new instances by calling the constructor of the class that takes a string argument, which is the desired name of the object.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      if (failed(pm_.run(user_module))) {
        return errors::Internal("Failed to run the decompose passes.");
      }
      return absl::OkStatus();
    }
    
    // Constructor of the decompose context.
    TFRDecomposeContext::TFRDecomposeContext(mlir::ModuleOp tfr_module)
        : tfr_module_(tfr_module), pm_(tfr_module_.getContext()) {
      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top