Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,644 for Imported (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-library.pbtxt

          experimental_debug_info {
            original_node_names: "unnamed"
          }
        }
      }
    }
    versions {
      producer: 29
      min_consumer: 12
    }
    
    # Verify that functions from the library are properly imported.
    
    # CHECK-LABEL:  func @main() {
    # CHECK:    "tf.LegacyCall"() <{_disable_call_shape_inference = true, f = @foo0}> {device = ""}
    # CHECK:    "tf.LegacyCall"() <{_disable_call_shape_inference = false, f = @bar0}> {device = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/lookup2.go

    }
    
    // The following tests follow the same pattern as above but operate on an imported type instead of S.
    // Currently our testing framework doesn't make it easy to define an imported package for testing, so
    // instead we use the big.Float and ast.File types as they provide a suitable mix of exported and un-
    // exported fields and methods.
    
    func _() {
    	var x *big.Float
    	_ = x.Neg  // OK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/go/internal/srcimporter/srcimporter_test.go

    	}
    
    	// Reimporting a partially imported (incomplete) package is not supported (see issue #19337).
    	// Make sure we recognize the situation and report an error.
    
    	mathPkg := types.NewPackage("math", "math") // incomplete package
    	importer := New(&build.Default, token.NewFileSet(), map[string]*types.Package{mathPkg.Path(): mathPkg})
    	_, err := importer.ImportFrom("math", ".", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

         */
        boolean isImplicitBuild();
    
        /**
         * Should this build be imported into an IDE? Some implicit builds, such as source dependency builds, are not intended to be imported into the IDE or editable by users.
         */
        boolean isImportableBuild();
    
        /**
         * Calculates the identity path for a project in this build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/consumer/settings.gradle.kts

        dependencyResolutionManagement {
            versionCatalogs {
                create("amendedLibs") {
                    from("com.mycompany:catalog:1.0")
                    // overwrite the "groovy" version declared in the imported catalog
                    version("groovy", "3.0.6")
                }
            }
        }
        // end::overwrite_version[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. .github/PULL_REQUEST_TEMPLATE

    This PR will be imported into Gerrit with the title and first
    comment (this text) used to generate the subject and body of
    the Gerrit change.
    
    **Please ensure you adhere to every item in this list.**
    
    More info can be found at https://github.com/golang/go/wiki/CommitMessage
    
    + The PR title is formatted as follows: `net/http: frob the quux before blarfing`
      + The package name goes before the colon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 02:07:46 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/iimport.go

    func SetBaseTypeIndex(t *types.Type, i, pi int64) {
    	if t.Obj() == nil {
    		base.Fatalf("SetBaseTypeIndex on non-defined type %v", t)
    	}
    	if i != -1 && pi != -1 {
    		typeSymIdx[t] = [2]int64{i, pi}
    	}
    }
    
    // Map imported type T to the index of type descriptor symbols of T and *T,
    // so we can use index to reference the symbol.
    // TODO(mdempsky): Store this information directly in the Type's Name.
    var typeSymIdx = make(map[*types.Type][2]int64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multiple-use-next-iteration.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -o - | FileCheck %s
    
    # Verify that a NextIteration node feeding two different merge nodes is properly
    # Imported.
    
    # CHECK-LABEL: func @main()
    # CHECK:         %[[NEXTITERATION:[a-z_0-9]+]], {{.*}} = tf_executor.NextIteration.Source
    # CHECK:         tf_executor.Merge {{.*}}, %[[NEXTITERATION]]
    # CHECK:         tf_executor.Merge {{.*}}, %[[NEXTITERATION]]
    
    node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. hack/verify-imports.sh

    # 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.
    
    # This script checks restricted packages are imported or not and outputs the
    # result. Target directory's path and allowed packages against checking are
    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/LinkMachOBundle.java

    import org.gradle.nativeplatform.internal.DefaultLinkerSpec;
    import org.gradle.nativeplatform.internal.LinkerSpec;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Links a binary bundle from object files and imported libraries.
     *
     * @since 4.3
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class LinkMachOBundle extends AbstractLinkTask {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top