Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for importing (0.23 sec)

  1. 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)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                Collection<String> importIds) {
            DependencyManagement depMgmt = model.getDependencyManagement();
    
            if (depMgmt == null) {
                return;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    	// Populated by (*loader).pkgTest:
    	testOnce sync.Once
    	test     *loadPkg
    
    	// Populated by postprocessing in (*loader).buildStacks:
    	stack *loadPkg // package importing this one in minimal import stack for this pkg
    }
    
    // loadPkgFlags is a set of flags tracking metadata about a package.
    type loadPkgFlags int8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val importKindFromOption = ImportKind.fromShortenOption(option)
            val importKind = matchedCallables.minOfOrNull { it.importKind } ?: importKindFromOption ?: return null
    
            val callToShorten = when {
                otherCallables.all { importKind.hasHigherPriorityThan(it.importKind) } -> {
                    when {
                        matchedCallables.isEmpty() -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. tensorflow/BUILD

    # build is static and TensorFlow symbols (in Python only) are loaded into the
    # global symbol table in order to support op registration. This means that
    # projects building with Bazel and importing TensorFlow as a dependency will not
    # depend on libtensorflow_framework.so unless they opt in.
    tf_cc_shared_library(
        name = "tensorflow_framework",
        additional_linker_inputs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/time/format.go

    		//
    		// - use Location(loc.name), which is not technically valid syntax
    		// - use LoadLocation(loc.name), which will cause a syntax error when
    		// embedded and also would require us to escape the string without
    		// importing fmt or strconv
    		// - try to use FixedZone, which would also require escaping the name
    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users.go

    				writeErrorResponse(ctx, w, exportError(ctx, err, iamFile, ""), r.URL)
    				return
    			}
    		}
    	}
    }
    
    // ImportIAM - imports all IAM info into MinIO
    func (a adminAPIHandlers) ImportIAM(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Get current object layer instance.
    	objectAPI := newObjectLayerFn()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    def TF_ImportEventOp : TF_Op<"ImportEvent", []> {
      let summary = "Outputs a `tf.Event` protocol buffer.";
    
      let description = [{
    When CreateSummaryDbWriter is being used, this op can be useful for
    importing data from event logs.
    
    writer: A handle to a summary writer.
    event: A string containing a binary-encoded tf.Event proto.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	fingerprint := ctxt.loader.Preload(ctxt.IncVersion(), f, lib, unit, eof-f.Offset())
    	if !fingerprint.IsZero() { // Assembly objects don't have fingerprints. Ignore them.
    		// Check fingerprint, to ensure the importing and imported packages
    		// have consistent view of symbol indices.
    		// Normally the go command should ensure this. But in case something
    		// goes wrong, it could lead to obscure bugs like run-time crash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    .map_canvas object {
    	max-width: none !important;
    }
    
    .left {
    	float: left !important;
    }
    
    .right {
    	float: right !important;
    }
    
    .text-left {
    	text-align: left !important;
    }
    
    .text-right {
    	text-align: right !important;
    }
    
    .text-center {
    	text-align: center !important;
    }
    
    .text-justify {
    	text-align: justify !important;
    }
    
    .hide {
    	display: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top