Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for dictionary (0.27 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                            userFSTReaderField.set(tokenizer, userFst.getBytesReader());
                            @SuppressWarnings("unchecked")
                            final EnumMap<Type, Dictionary> dictionaryMap = (EnumMap<Type, Dictionary>) dictionaryMapField.get(tokenizer);
                            dictionaryMap.put(Type.USER, userDictionary);
                        } catch (final Exception e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_custom_call_to_composite.cc

        if (!backendConfig)
          return op->emitError(
              "custom_call has no 'composite.backend_config' attribute or the "
              "attribute is not a dictionary");
    
        auto name = mlir::dyn_cast<StringAttr>(backendConfig.get("name"));
        if (!name)
          return op->emitError(
              "backend_config has no 'name' key or the name value is not a string");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/func-attr-invalid.mlir

    func.func @main() attributes {tf._implements = #tf_type.func<"test", {}>} {
      func.return
    }
    
    // -----
    
    // expected-error@+1 {{expected Dictionary attribute while parsing tf.func attribute}}
    func.func @main() attributes {tf._implements = #tf_type.func<@symbol, "">} {
      func.return
    }
    
    // -----
    
    // expected-error@+1 {{expected '>'}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 06 09:05:45 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildFile.java

     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSDictionary;
    import com.google.common.base.Optional;
    import com.google.common.base.Preconditions;
    
    /**
     * File referenced by a build phase, unique to each build phase.
     *
     * Contains a dictionary {@link #settings} which holds additional information to be interpreted by
     * the particular phase referencing this object, e.g.:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/traceevent.go

    	traceEvStack      // stack table entry [ID, ...{PC, func string ID, file string ID, line #}]
    	traceEvStrings    // start of a section of the string dictionary [...traceEvString]
    	traceEvString     // string dictionary entry [ID, length, string]
    	traceEvCPUSamples // start of a section of CPU samples [...traceEvCPUSample]
    	traceEvCPUSample  // CPU profiling sample [timestamp, M ID, P ID, goroutine ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h

    // Every stablehlo function deserialized from XlaCallModule has this attribute.
    constexpr llvm::StringRef kFromXlaCallModuleAttrName = "_from_xla_call_module";
    
    // Name of `tf.XlaCallModule`'s dictionary attribute for keeping the
    // deserialized stablehlo module's attributes.
    constexpr llvm::StringRef kStablehloModuleAttrsAttrName =
        "_stablehlo_module_attrs";
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 22:08:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. test/typeparam/dictionaryCapture-noinline.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test situations where functions/methods are not
    // immediately called and we need to capture the dictionary
    // required for later invocation.
    
    package main
    
    func main() {
    	functions()
    	methodExpressions()
    	methodValues()
    	interfaceMethods()
    	globals()
    }
    
    func g0[T any](x T) {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    // parameters (see relevant .protos for more information). Returns a string
    // representing the contents of the converted model. When extended_return
    // flag is set to true returns a dictionary that contains string representation
    // of the converted model and some statistics like arithmetic ops count.
    // `debug_info_str` contains the `GraphDebugInfo` proto. When
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/XcodeprojSerializer.java

         */
        public NSDictionary toPlist() {
            serializeObject(rootObject);
    
            NSDictionary root = new NSDictionary();
            root.put("archiveVersion", "1");
            root.put("classes", new NSDictionary());
            root.put("objectVersion", "46");
            root.put("objects", objects);
            root.put("rootObject", rootObject.getGlobalID());
    
            return root;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectFixture.groovy

            assert this.project.buildSpec.buildCommand.name*.text().contains(builderName)
            args.each { key, value ->
                def argument = this.project.buildSpec.buildCommand.find { it.name.text() == builderName }.arguments.dictionary.find { it.key.text() == key }
                assert argument != null
                assert argument.value.text() == value
            }
        }
    
        void assertHasLinkedResource(String name, String type, String location) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top