Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 707 for capture1 (0.19 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TypeOfExtensions.kt

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.reflect.TypeOf
    
    
    /**
     * Creates an instance of [TypeOf] for the given parameterized type.
     *
     * @param T the type
     * @return the [TypeOf] that captures the generic type of the given parameterized type
     */
    inline fun <reified T> typeOf(): TypeOf<T> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 947 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/kotlin/app/build.gradle.kts

    plugins {
        application
    }
    // tag::snippet[]
    // Extension class to capture user input
    class MyExtension {
        @Input
        var inputParameter: String? = null
    }
    
    // Custom task that uses the input from the extension
    class MyCustomTask : org.gradle.api.DefaultTask() {
        @Input
        var inputParameter: String? = null
    
        @TaskAction
        fun executeTask() {
            println("Input parameter: $inputParameter")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 923 bytes
    - Viewed (0)
  3. tensorflow/c/tf_status.h

    // callable for each one. `key` and `value` is only usable during the callback.
    // `capture` will be passed to the callback without modification.
    #define TF_PayloadVisitor TSL_PayloadVisitor
    TF_CAPI_EXPORT extern void TF_ForEachPayload(const TF_Status* s,
                                                 TF_PayloadVisitor visitor,
                                                 void* capture);
    
    // Convert from an I/O error code (e.g., errno) to a TF_Status value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/format.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package capture
    
    import "strings"
    
    func FormatIptablesCommands(commands [][]string) []string {
    	output := make([]string, 0, len(commands))
    	for _, cmd := range commands {
    		output = append(output, strings.Join(cmd, " "))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 21:27:28 UTC 2021
    - 827 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-control-ret-same-island.pbtxt

    # Verify for functions with control return values, the island with a consumed
    # data output and a consumed control has both its outputs added to the GraphOps
    # FetchOp.
    
    # Match the island containing the "tf.Neg", capture the output
    # CHECK:          %[[ISLAND:[a-z_0-9]*]], %[[ISLAND_control:[a-z_0-9]*]] = tf_executor.island wraps "tf.Neg"
    
    # Check that the tf.Neg data output and control are passed to the fetch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/groovy/app/build.gradle

    plugins {
        id 'application'
    }
    // tag::snippet[]
    // Extension class to capture user input
    class MyExtension {
        @Input
        String inputParameter = null
    }
    
    // Custom task that uses the input from the extension
    class MyCustomTask extends DefaultTask {
        @Input
        String inputParameter = null
    
        @TaskAction
        def executeTask() {
            println("Input parameter: $inputParameter")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 881 bytes
    - Viewed (0)
  7. architecture/ambient/peer-authentication.md

    /workloadapi/workload.proto) and [`Authorization`](../../pkg/workloadapi/security/authorization.proto). As such, ztunnel does not receive `PeerAuthentication`s directly; when istiod detects a `PeerAuthentication` resource that targets an Ambient captured workload, it computes the effective policy for that workload (taking into account the mesh-wide -> namespace -> workload precedence rules) and sends that policy to ztunnel. The exact details of this conversion is out of scope for this document at...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      // Test that the quantized op is captured in `results`.
      const QuantizationResult& quantized_result = results.results(0);
      EXPECT_THAT(quantized_result.quantizable_unit().name(),
                  StrEq("composite_dot_general_fn_2"));
      EXPECT_TRUE(quantized_result.method().has_static_range_ptq());
    
      // Test that the non-quantized op is captured in `results`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * @return this
         */
        CopyProcessingSpec rename(String sourceRegEx, String replaceWith);
    
        /**
         * Renames files based on a regular expression. See {@link #rename(String, String)}.
         *
         * @param sourceRegEx Source regular expression
         * @param replaceWith Replacement string (use $ syntax for capture groups)
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/AfterExecutionState.java

    package org.gradle.internal.execution.history;
    
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * Captures the state of a {@link org.gradle.internal.execution.UnitOfWork} after it has been executed.
     *
     * Execution here might also mean being up-to-date or loaded from cache.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top