Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,220 for emplace (0.34 seconds)

  1. tensorflow/c/c_api.cc

      desc->node_builder.ControlInput(&input->node);
    }
    
    void TF_ColocateWith(TF_OperationDescription* desc, TF_Operation* op) {
      desc->colocation_constraints.emplace(
          absl::StrCat(tensorflow::kColocationGroupPrefix, op->node.name()));
    }
    
    void TF_SetAttrString(TF_OperationDescription* desc, const char* attr_name,
                          const void* value, size_t length) {
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
  2. impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/settings-template.xml

    Elliotte Rusty Harold <******@****.***> 1753117790 +0000
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Jul 21 17:09:50 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  3. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

      }
    
      private void assertWithTemplate(String template, Item<T> item, Item<T> other, boolean condition) {
        if (!condition) {
          throw new AssertionFailedError(
              template
                  .replace("$RELATIONSHIP", relationshipName)
                  .replace("$HASH", hashName)
                  .replace("$ITEM", itemReporter.reportItem(item))
                  .replace("$OTHER", itemReporter.reportItem(other)));
        }
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                if (value == null) {
                    return u;
                }
                return value.toString();
            };
        }
    
        /**
         * Replaces URL using the given path mapping list.
         *
         * @param pathMappingList the path mapping list
         * @param url the URL to replace
         * @return the replaced URL
         */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  5. .github/release-drafter-3.x.yml

    # under the License.
    
    _extends: maven-gh-actions-shared:.github/release-drafter.yml
    tag-template: maven-$RESOLVED_VERSION
    
    # Override replacers to strip backport branch prefixes and handle JIRA links
    replacers:
      # Strip backport branch prefixes like [maven-4.0.x], [maven-3.x], etc.
      - search: '/^\[maven-[\d\.x-]+\]\s*-?\s*/g'
        replace: ''
      # Convert JIRA ticket references to links (but not maven branch prefixes)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 10 13:07:10 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath("WEB-INF/", "orig", names);
        }
    
        /**
         * Gets the path to email template files directory.
         *
         * @param names the path components to append to the mail template directory
         * @return the Path object pointing to the mail template directory
         */
        public static Path getMailTemplatePath(final String... names) {
            return getPath("WEB-INF/", "mail", names);
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

        /**
         * Convert the value.
         * @param scriptType The script type.
         * @param template The template.
         * @param paramMap The parameters.
         * @return The converted value.
         */
        protected Object convertValue(final String scriptType, final String template, final Map<String, Object> paramMap) {
            if (StringUtil.isEmpty(template)) {
                return StringUtil.EMPTY;
            }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java

                return signature;
            }
    
            public String getUrlFragment(String className) {
                return style == LinkMetaData.Style.Dsldoc ? String.format("%s:%s", className, signature) : signature.replace('(', '-').replace(')', '-');
            }
    
            @Override
            public String toString() {
                return signature;
            }
        }
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Apr 11 11:17:34 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         * Puts data into the result data map after processing it through a template script.
         * The template is evaluated using the specified script engine with the value and context.
         *
         * @param dataMap the data map to modify
         * @param key the key to store the processed value under
         * @param value the original value to process
         * @param template the template script to evaluate
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  10. docs/es/docs/advanced/templates.md

    Item ID: 42
    ```
    
    ### Argumentos de la Plantilla `url_for` { #template-url-for-arguments }
    
    También puedes usar `url_for()` dentro de la plantilla, toma como argumentos los mismos que usaría tu *path operation function*.
    
    Entonces, la sección con:
    
    {% raw %}
    
    ```jinja
    <a href="{{ url_for('read_item', id=id) }}">
    ```
    
    {% endraw %}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 3.7K bytes
    - Click Count (0)
Back to Top