Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,681 for associateBy (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            signatureOfCallee: KaFunctionLikeSignature<*>,
        ): LinkedHashMap<KtExpression, KaVariableLikeSignature<KaValueParameterSymbol>> {
            val paramSignatureByName = signatureOfCallee.valueParameters.associateBy {
                // We intentionally use `symbol.name` instead of `name` here, since
                // `FirValueParameter.name` is not affected by the `@ParameterName`
                it.symbol.name
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

        /**
         * Gets the session data associated with the specified key.
         *
         * @param key the key for which to retrieve the session data, must not be {@code null}
         * @return the session data associated with the key or {@code null} if none
         */
        @Nullable
        <T> T get(@Nonnull Key<T> key);
    
        /**
         * Retrieve of compute the data associated with the specified key.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/text/template/template.go

    		}
    	}
    	return t, nil
    }
    
    // associate installs the new template into the group of templates associated
    // with t. The two are already known to share the common structure.
    // The boolean return value reports whether to store this tree as t.Tree.
    func (t *Template) associate(new *Template, tree *parse.Tree) bool {
    	if new.common != t.common {
    		panic("internal error: associate not common")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      @Override
      public String toString() {
        return map.toString();
      }
    
      /**
       * If {@code key} is not already associated with a value or if {@code key} is associated with
       * zero, associate it with {@code newValue}. Returns the previous value associated with {@code
       * key}, or zero if there was no mapping for {@code key}.
       */
      long putIfAbsent(K key, long newValue) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/go/ast/commentmap.go

    //
    // A comment group g is associated with a node n if:
    //
    //   - g starts on the same line as n ends
    //   - g starts on the line immediately following n, and there is
    //     at least one empty line after g and before the next node
    //   - g starts before n and is not associated to the node before n
    //     via the previous rules
    //
    // NewCommentMap tries to associate a comment group to the "largest"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Table.java

      void clear();
    
      /**
       * Associates the specified value with the specified keys. If the table already contained a
       * mapping for those keys, the old value is replaced with the specified value.
       *
       * @param rowKey row key that the value should be associated with
       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       *   absent.
       */
    
      /**
       * If {@code key} is not already associated with a value or if {@code key} is associated with
       * zero, associate it with {@code newValue}. Returns the previous value associated with {@code
       * key}, or zero if there was no mapping for {@code key}.
       */
      long putIfAbsent(K key, long newValue) {
        while (true) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/html/template/template.go

    // Named template definitions ({{define ...}} or {{block ...}} statements) in text
    // define additional templates associated with t and are removed from the
    // definition of t itself.
    //
    // Templates can be redefined in successive calls to Parse,
    // before the first use of [Template.Execute] on t or any associated template.
    // A template definition with a body containing only white space and comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Table.java

      void clear();
    
      /**
       * Associates the specified value with the specified keys. If the table already contained a
       * mapping for those keys, the old value is replaced with the specified value.
       *
       * @param rowKey row key that the value should be associated with
       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. src/text/template/helper.go

    		// and we use that one for subsequent New calls to associate
    		// all the templates together. Also, if this file has the same name
    		// as t, this file becomes the contents of t, so
    		//  t, err := New(name).Funcs(xxx).ParseFiles(name)
    		// works. Otherwise we create a new template associated with t.
    		var tmpl *Template
    		if t == nil {
    			t = New(name)
    		}
    		if name == t.Name() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top