Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,764 for yield (0.06 sec)

  1. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

                is SystemProperty -> trace
                is Project -> trace
                else -> null
            }
    }
    
    
    enum class PropertyKind {
        Field {
            override fun toString() = "field"
        },
        PropertyUsage {
            override fun toString() = "property usage"
        },
        InputProperty {
            override fun toString() = "input property"
        },
        OutputProperty {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10ScopeResolution.kt

            return scope.getClassifierNames() ?: emptySet()
        }
    
        override fun getConstructors(): Sequence<KaConstructorSymbol> = sequence {
            constructors.forEach { yield(it.toKtConstructorSymbol(analysisContext)) }
        }
    }
    
    internal open class KaFe10ScopeNonStaticMember(
        scope: MemberScope,
        constructors: Collection<ConstructorDescriptor>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. docs/fa/docs/tutorial/middleware.md

    * می تواند کاری با **پاسخ** انجام دهید یا هر کد مورد نیازتان را اجرا کند.
    * سپس **پاسخ** را برمی گرداند.
    
    !!! توجه "جزئیات فنی"
        در صورت وجود وابستگی هایی با `yield`، کد خروجی **پس از** اجرای میان‌‌افزار اجرا خواهد شد.
    
        در صورت وجود هر گونه وظایف پس زمینه (که در ادامه توضیح داده می‌شوند)، تمام میان‌افزارها *پس از آن* اجرا خواهند شد.
    
    ## ساخت یک میان افزار
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 29 17:53:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          outlier = np.random.uniform(low=0, high=10, size=(1, 3, 4, 3)).astype(
              'f4'
          )
          outlier[0][0][0][0:2] = [-1000, 1000]
          yield {'input_tensor': ops.convert_to_tensor(outlier)}
          for _ in range(10):
            yield {
                'input_tensor': ops.convert_to_tensor(
                    np.random.uniform(low=0, high=10, size=(1, 3, 4, 3)).astype(
                        'f4'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    
    private
    val Project.hierarchy: Sequence<Project>
        get() = sequence {
            var project = this@hierarchy
            yield(project)
            while (project != project.rootProject) {
                project = project.parent!!
                yield(project)
            }
        }
    
    
    private
    val Project.isLocationAwareEditorHintsEnabled: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/quantize.mlir

        %4 = "tf.LayerNorm"(%a1, %a2, %a3, %a4) {_tfl_quant_trait = "fully_quantizable", device = ""} : (tensor<128x128xf32>, tensor<1xf32>, tensor<1xf32>, tensor<1xi32>) -> tensor<128x128xf32>
       "tfl.yield"(%4) : (tensor<128x128xf32>) -> ()
      }) {_tfl_quant_trait = "fully_quantizable", device = ""} : (tensor<128x128xf32>, tensor<1xf32>, tensor<1xf32>, tensor<1xi32>) -> tensor<128x128xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

          "tf.Yield"(%1) : (tensor<i1>) -> ()
      }, {
        ^bb0(%arg2: tensor<i32>, %arg3: tensor<128x1024xf32>):
          %1 = "tf.XlaSharding"(%arg3) <{_XlaSharding = "\0A\0B\0C", sharding = "\0A\0B\0C"}> {unspecified_dims = []} : (tensor<128x1024xf32>) -> tensor<128x1024xf32>
          %2 = "tf.Square"(%1) : (tensor<128x1024xf32>) -> tensor<128x1024xf32>
          "tf.Yield"(%arg2, %2) : (tensor<i32>, tensor<128x1024xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

              tf_device.return %c, %b : tensor<f32>, tensor<i32>
            }) {device = "CPU:0"} : () -> (tensor<f32>, tensor<i32>)
            %d = "tf.opD"() : () -> tensor<i1>
            tf_executor.yield %a, %launch#0, %launch#1, %d :
                              tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
          }
        ```
    
        Will be transformed into:
    
        ```mlir
          %island:5 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. fastapi/datastructures.py

            """
            return await super().close()
    
        @classmethod
        def __get_validators__(cls: Type["UploadFile"]) -> Iterable[Callable[..., Any]]:
            yield cls.validate
    
        @classmethod
        def validate(cls: Type["UploadFile"], v: Any) -> Any:
            if not isinstance(v, StarletteUploadFile):
                raise ValueError(f"Expected UploadFile, received: {type(v)}")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/saved_variable_loading_test.cc

      std::unique_ptr<Variable> var;
      ASSERT_NE(absl::OkStatus(),
                internal::LoadSavedVariable(context(), saved_variable, &var));
    }
    
    // Assigning and reading values should yield
    // consistent results.
    TEST_P(SavedVariableLoadingTest, AssignAndReadVariableSuccesful) {
      auto& test_params = GetParam();
      DataType dtype = std::get<0>(test_params);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top