Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,091 for GETs (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert-tf-control-flow-to-scf.mlir

    // RUN: tf-opt -convert-tf-control-flow-to-scf %s | FileCheck %s
    
    // `tf.IfRegion` which returns values gets converted to `scf.if`.
    func.func private @test_if_then1(tensor<4xf32>) -> tensor<4xf32>
    func.func private @test_if_else1(tensor<4xf32>) -> tensor<4xf32>
    // CHECK-LABEL: func @test_supported_lowering_of_tf_if_region1
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<i1>, %[[ARG1:.*]]: tensor<4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/fingerprinting_utils.h

            field_tags,
        Message* merged_message);
    
    // Gets the field tags for `graph_def`.::tensorflow
    inline RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>
    GraphDefFieldTags();
    
    // Gets the field tags for `signature_def`.
    inline RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>
    SignatureDefFieldTags();
    
    // Gets the field tags for `saved_object_graph`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

     *
     * @param <T> The type of data associated with the tag.
     */
    interface ModelCacheTag<T> {
    
        /**
         * Gets the name of the tag.
         *
         * @return The name of the tag, must not be {@code null}.
         */
        String getName();
    
        /**
         * Gets the type of data associated with this tag.
         *
         * @return The type of data, must not be {@code null}.
         */
        Class<T> getType();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/LenientConfiguration.java

        @Deprecated
        Set<File> getFiles(Spec<? super Dependency> dependencySpec);
    
        /**
         * Gets successfully resolved artifacts. Ignores dependencies or files that cannot be resolved.
         *
         * @return successfully resolved artifacts
         * @since 3.3
         */
        Set<ResolvedArtifact> getArtifacts();
    
        /**
         * Gets successfully resolved artifacts. Ignores dependencies or files that cannot be resolved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue16095.go

    		y[i] = 99
    	}
    	// Make sure y is heap allocated.
    	sink = y
    
    	panic(nil)
    
    	// After the recover we reach the deferreturn, which
    	// copies the heap version of x back to the stack.
    	// It gets the pointer to x from a stack slot that was
    	// not marked as live during the call to runtime.GC().
    }
    
    var sinkint int
    
    func g(p *int) (x [20]byte) {
    	// Initialize x.
    	for i := range x {
    		x[i] = byte(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 16:48:48 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoLimit.java

        void setValue(String value);
    
        /**
         * Gets the minimum expected value for limit. Default to null.
         */
        @Nullable
        @Optional
        @Input
        BigDecimal getMinimum();
    
        /**
         * Sets the minimum expected value for limit.
         *
         * @param minimum Minimum
         */
        void setMinimum(@Nullable BigDecimal minimum);
    
        /**
         * Gets the maximum expected value for limit. Default to null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/util/cgroups_linux.go

    	libcontainerutils "github.com/opencontainers/runc/libcontainer/utils"
    )
    
    const (
    	// CgroupRoot is the base path where cgroups are mounted
    	CgroupRoot = "/sys/fs/cgroup"
    )
    
    // GetPids gets pids of the desired cgroup
    // Forked from opencontainers/runc/libcontainer/cgroup/fs.Manager.GetPids()
    func GetPids(cgroupPath string) ([]int, error) {
    	dir := ""
    
    	if libcontainercgroups.IsCgroup2UnifiedMode() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilderResult {
    
        /**
         * Gets the assembled settings.
         *
         * @return the assembled settings, never {@code null}
         */
        @Nonnull
        Settings getEffectiveSettings();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java

    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ToolchainsBuilderResult {
        /**
         * Gets the assembled toolchains.
         *
         * @return the assembled toolchains, never {@code null}
         */
        @Nonnull
        PersistedToolchains getEffectiveToolchains();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingResult.java

    /**
     * Collects the output of the settings builder.
     *
     */
    public interface SettingsBuildingResult {
    
        /**
         * Gets the assembled settings.
         *
         * @return The assembled settings, never {@code null}.
         */
        Settings getEffectiveSettings();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top