Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,964 for importing (0.31 sec)

  1. src/go/internal/gcimporter/gcimporter_test.go

    	if len(packageFiles) > 0 || len(pkgImports) > 0 {
    		importcfgfile = filepath.Join(outdirname, basename) + ".importcfg"
    		testenv.WriteImportcfg(t, importcfgfile, packageFiles, pkgImports...)
    	}
    
    	pkgpath := path.Join("testdata", basename)
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p", pkgpath, "-D", "testdata", "-importcfg", importcfgfile, "-o", outname, filename)
    	cmd.Dir = dirname
    	out, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/search/search.go

    			if err != nil {
    				if _, noGo := err.(*build.NoGoError); noGo {
    					// The package does not actually exist, so record neither the package
    					// nor the error.
    					return nil
    				}
    				// There was an error importing path, but not matching it,
    				// which is all that Match promises to do.
    				// Ignore the import error.
    			}
    
    			// If we are expanding "cmd", skip main
    			// packages under cmd/vendor. At least as of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[composite_build_ide_integration]]
    === Importing into the IDE
    
    One of the most useful features of composite builds is IDE integration.
    
    Importing a composite build permits sources from separate Gradle builds to be easily developed together.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

        // later tranlated to the op's name when exported to `GraphDef`. This is
        // required to find the correct variable name to restore when it is
        // imported back to MLIR. When importing the graph to MLIR, the name of the
        // op is used to retrieve the tensor values of each variable. See
        // `InitializeVariablesInSessionInitializer` for further details.
        const auto loc = NameLoc::get(StringAttr::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                Collection<String> importIds) {
            DependencyManagement depMgmt = model.getDependencyManagement();
    
            if (depMgmt == null) {
                return model;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. hack/golangci.yaml.in

          - "-SA2002"  # TODO(fix) Called testing.T.FailNow or SkipNow in a goroutine, which isn’t allowed
          {{- end}}
      {{- if .Base }}
      stylecheck:
        checks:
          - "ST1019"   # Importing the same package multiple times
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
      min:[float];  // For importing back into tensorflow.
      max:[float];  // For importing back into tensorflow.
      scale:[float];  // For dequantizing the tensor's values.
      zero_point:[long];
    
      // If this is not none, the other quantization parameters (i.e. min, max,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. hack/golangci.yaml

          - "-SA2002"  # TODO(fix) Called testing.T.FailNow or SkipNow in a goroutine, which isn’t allowed
      stylecheck:
        checks:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    Sometimes the platform you define is an extension of another existing platform.
    
    In order to have your platform include the constraints from that third party platform, it needs to be imported as a `platform` _dependency_:
    
    .Importing a platform
    ====
    include::sample[dir="snippets/java-platform/quickstart/kotlin",files="build.gradle.kts[tags=platform]"]
    include::sample[dir="snippets/java-platform/quickstart/groovy",files="build.gradle[tags=platform]"]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

        // unnecessary for non-TF QDQ models.
        pass_config.quant_specs.disable_set_input_nodes_quantization_params = true;
      }
    
      // TODO(b/153507667): Pass the session object when importing logic is removed.
      auto status = internal::ConvertMLIRToTFLiteFlatBuffer(
          model_flags, toco_flags, std::move(module), pass_config, tags, result,
          bundle.get(), quantization_py_function_lib);
      return status;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top