Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,644 for Imported (0.13 sec)

  1. src/runtime/internal/startlinetest/func_amd64.s

    //     non-test builds.
    //  2. Due of (1), the linker can't resolve the callerStartLine relocation
    //     (as runtime_test isn't built for non-test builds).
    //
    // Thus it is simpler to just put this in its own package, imported only by
    // runtime_test. We use ABIInternal as no ABI wrapper is generated for
    // callerStartLine since it is in a different package.
    
    TEXT	·AsmFunc<ABIInternal>(SB),NOSPLIT,$8-0
    	NO_LOCAL_POINTERS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 22 04:34:33 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. test/inline_sync.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test, using compiler diagnostic flags, that inlining of functions
    // imported from the sync package is working.
    // Compiles but does not run.
    
    // FIXME: This test is disabled on architectures where atomic operations
    // are function calls rather than intrinsics, since this prevents inlining
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 21:01:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    ```
    open module org.gradle.sample.integtest.utilities {
        requires org.gradle.sample.utilities;
        requires org.junit.jupiter.api;
    }
    ```
    
    NOTE: This sample does **not** work in Eclipse when imported using https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    This is due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=520667[a limitation in Eclipse] that does not allow more than one module in one project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

        }
      }
      function {
        signature {
          name: "foo20"
        }
      }
    }
    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 = false, f = @foo110}> {device = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/tidy.go

    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    version. By default, tidy acts as if the -compat flag were set to the
    version prior to the one indicated by the 'go' directive in the go.mod
    file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    		if pkg.err == nil {
    			continue
    		}
    
    		// Add importer information to checksum errors.
    		if sumErr := (*ImportMissingSumError)(nil); errors.As(pkg.err, &sumErr) {
    			if importer := pkg.stack; importer != nil {
    				sumErr.importer = importer.path
    				sumErr.importerVersion = importer.mod.Version
    				sumErr.importerIsTest = importer.testOf != nil
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/go/doc/testdata/blank.go

    )
    
    // Constants with a single type that is not propagated.
    const (
    	zero     os.FileMode = 0
    	Default              = 0644
    	Useless              = 0312
    	WideOpen             = 0777
    )
    
    // Constants with an imported type that is propagated.
    const (
    	zero os.FileMode = 0
    	M1
    	M2
    	M3
    )
    
    // Package constants.
    const (
    	_ int = iota
    	I1
    	I2
    )
    
    // Unexported constants counting from blank iota.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/fix/gotypes.go

    	// affects renameTop, but not vice versa, so do them in this order.
    	renameTop(f, "exact", "constant"+suffix)
    	rewriteImport(f, "golang.org/x/tools/go/exact", "go/constant")
    	// renameTop will also rewrite the imported package name. Fix that;
    	// we know it should be missing.
    	importSpec.Name = nil
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParser.java

            pomReader.addImportedDependencyMgts(importedDependencyMgts);
        }
    
        /**
         * Parses imported dependency management information.
         *
         * @param parseContext Parse context
         * @param currentDependencyMgts Current dependency management information
         * @return Imported dependency management information
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top