Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Location (0.64 sec)

  1. src/mdo/writer-stax.vm

            if (stringFormatter != null) {
                return stringFormatter.toString(location);
            }
            if (location.getSource() != null) {
                return ' ' + location.getSource().toString() + ':' + location.getLineNumber() + ' ';
            } else {
                return " " + location.getLineNumber() + " ";
            }
        } //-- String toString(InputLocation)
    #end
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

            override fun getContributedVariables(name: Name, location: LookupLocation): Collection<PropertyDescriptor> {
                return allMemberScope.getContributedVariables(name, location).filter {
                    it.isDeclaredInOwner() && it.isDelegatedIfRequired()
                }.mapToDelegatedIfRequired()
            }
    
            override fun getContributedFunctions(name: Name, location: LookupLocation): Collection<SimpleFunctionDescriptor> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/mdo/model.vm

            @Nonnull
            public Builder location(Object key, InputLocation location) {
                if (location != null) {
                    if (!(this.locations instanceof HashMap)) {
                        this.locations = this.locations != null ? new HashMap<>(this.locations) : new HashMap<>();
                    }
                    this.locations.put(key, location);
                }
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/mdo/merger.vm

                builder.${field.name}(merged);
            #if ( $locationTracking )
                if (target.get${capField}() == null) {
                    builder.location("${field.name}", source.getLocation("${field.name}"));
                } else if (merged != tgt) {
                    builder.location("${field.name}", new InputLocation(-1, -1));
                }
            #end
            }
          #elseif ( $field.to && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/mdo/model-v3.vm

            return loc != null ? new InputLocation(loc) : null;
        }
    
        public void setLocation(Object key, InputLocation location) {
            update(${packageModelV4}.${class.name}.newBuilder(getDelegate(), true)
                            .location(key, location.toApiLocation()).build());
        }
    
        #end
        protected boolean replace(Object oldDelegate, Object newDelegate) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

    * Implications for Subsystems
    
    ** Maven-Wagon
    
      Parts of Wagon will continue to function normally. These include:
    
      * The file wagon, provided the referenced location is on a local
        filesystem.
    
        It is not possible to determine whether a file-based location will
        be available except on a case-by-case basis (or a root-url by
        root-url basis). We may want to move the offline sensitivity entirely to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/mdo/reader-stax.vm

    #if ( $locationTracking )
        /**
         * Returns the state of the "add location information" flag.
         *
         * @return boolean
         */
        public boolean getAddLocationInformation() {
            return addLocationInformation;
        } //-- boolean getAddLocationInformation()
    
        /**
         * Sets the state of the "add location information" flag.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      is not sufficient to license the Source Code under Secondary Licenses.
    
      If it is not possible or desirable to put the notice in a particular
      file, then You may include the notice in a location (such as a LICENSE
      file in a relevant directory) where a recipient would be likely to
      look for such a notice.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. maven-core/plugin-manager.txt

    * installation
    * activation
    * update
    * deactivation
    * un-installation
    
    When a plugin is installed we may want to check the license and make users agree. We may also want to unpack the given plugin in a particular location.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        /**
         * The name of the value parameter. For a parameter of `FunctionN.invoke()` functions, the name is taken from the function type
         * notation, if a name is present. For example:
         * ```
         * fun foo(x: (item: Int, String) -> Unit) =
         *   x(1, "") // or `x.invoke(1, "")`
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top