Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 123 for dictionary (0.18 sec)

  1. src/main/resources/fess_config.properties

    page.web.auth.max.fetch.size=100
    page.path.mapping.max.fetch.size=1000
    page.request.header.max.fetch.size=1000
    page.scheduled.job.max.fetch.size=100
    page.elevate.word.max.fetch.size=1000
    page.bad.word.max.fetch.size=1000
    page.dictionary.max.fetch.size=1000
    page.relatedcontent.max.fetch.size=5000
    page.relatedquery.max.fetch.size=5000
    page.thumbnail.queue.max.fetch.size=100
    page.thumbnail.purge.max.fetch.size=100
    page.score.booster.max.fetch.size=1000
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        auto dict = cst->getAttrDictionary();
        if (dict.size() == 1) {
          return;  // Optimization. Assume the one attribute is "value".
        }
        // Recreate the attributes dictionary to only contain "value".
        NamedAttrList attributes;
        attributes.append(NamedAttribute(value_str_attr, cst->getAttr("value")));
        cst->setAttrs(attributes.getDictionary(&getContext()));
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  3. fastapi/applications.py

                        Union[int, Type[Exception]],
                        Callable[[Request, Any], Coroutine[Any, Any, Response]],
                    ]
                ],
                Doc(
                    """
                    A dictionary with handlers for exceptions.
    
                    In FastAPI, you would normally use the decorator
                    `@app.exception_handler()`.
    
                    Read more in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Ordering.java

        return new CompoundOrdering<>(comparators);
      }
    
      /**
       * Returns a new ordering which sorts iterables by comparing corresponding elements pairwise until
       * a nonzero result is found; imposes "dictionary order". If the end of one iterable is reached,
       * but not the other, the shorter iterable is considered to be less than the longer one. For
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Ordering.java

        return new CompoundOrdering<>(comparators);
      }
    
      /**
       * Returns a new ordering which sorts iterables by comparing corresponding elements pairwise until
       * a nonzero result is found; imposes "dictionary order". If the end of one iterable is reached,
       * but not the other, the shorter iterable is considered to be less than the longer one. For
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	XTY_IMP = 0x40 // Imported symbol
    )
    
    // Storage-mapping class.
    const (
    	XMC_PR     = 0  // Program code
    	XMC_RO     = 1  // Read-only constant
    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    	XMC_XO     = 7  // Extended operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf_test.go

    	if found != expected {
    		t.Errorf("param check failed, wanted:\n%s\ngot:\n%s\n",
    			expected, found)
    	}
    }
    
    func TestDictIndex(t *testing.T) {
    	// Check that variables with a parametric type have a dictionary index
    	// attribute and that types that are only referenced through dictionaries
    	// have DIEs.
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    	t.Parallel()
    
    	const prog = `
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      BufferOffset<tflite::Metadata> BuildMetadata(StringRef name,
                                                   StringRef content);
    
      // Encodes the `tfl.metadata` dictionary attribute of the module to the
      // metadata section in the final model.
      std::optional<VectorBufferOffset<BufferOffset<tflite::Metadata>>>
      CreateMetadataVector();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/internal/XcodeProjectFile.java

    import com.dd.plist.NSDictionary;
    import org.gradle.api.internal.PropertyListTransformer;
    import org.gradle.plugins.ide.internal.generator.PropertyListPersistableConfigurationObject;
    
    public class XcodeProjectFile extends PropertyListPersistableConfigurationObject<NSDictionary> {
    
        public XcodeProjectFile(PropertyListTransformer<NSDictionary> transformer) {
            super(NSDictionary.class, transformer);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/internal/XcodeWorkspaceSettingsFile.java

        }
    
        @Override
        protected NSDictionary newRootObject() {
            return new NSDictionary();
        }
    
        @Override
        protected void store(NSDictionary rootObject) {
        }
    
        @Override
        protected void load(NSDictionary rootObject) {
        }
    
        @Override
        protected String getDefaultResourceName() {
            return "default.xcsettings";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top