Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1431 - 1440 of 2,289 for setA (0.02 seconds)

  1. src/archive/zip/testdata/readme.zip

    http://localhost:6060/doc/install.html. Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file. -- Binary Distribution Notes If you have just untarred a binary Go distribution, you need to set the environment variable $GOROOT to the full path of the go directory (the one containing this README). You can omit the variable if you unpack it into /usr/local/go, or if you rebuild from sources by running all.bash (see doc/install.html). You should...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Sat Jul 11 14:36:33 GMT 2015
    - 1.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DistributionArchive.java

            this.name = name;
        }
    
        public void setArchiveClassifier(String classifier) {
            this.archiveTask.configure(abstractArchiveTask -> abstractArchiveTask.getArchiveClassifier().set(classifier));
        }
    
        public void content(Supplier<CopySpec> p) {
            this.archiveTask.configure(t -> t.with(p.get()));
            this.expandedDistTask.configure(t -> t.with(p.get()));
        }
    
        @Override
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  3. src/test/java/jcifs/netbios/SessionServicePacketTest.java

        @Test
        @DisplayName("writeHeaderWireFormat should set extended bit for large length")
        void testWriteHeaderWireFormatExtendedLength() {
            packet.type = SessionServicePacket.SESSION_MESSAGE;
            packet.length = 0x10000;
    
            byte[] dst = new byte[10];
            packet.writeHeaderWireFormat(dst, 0);
    
            assertEquals((byte) 0x01, dst[1]); // Extended bit set
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 15.5K bytes
    - Click Count (0)
  4. docs/en/docs/advanced/custom-response.md

    Asynchronously streams a file as the response.
    
    Takes a different set of arguments to instantiate than the other response types:
    
    * `path` - The file path to the file to stream.
    * `headers` - Any custom headers to include, as a dictionary.
    * `media_type` - A string giving the media type. If unset, the filename or path will be used to infer a media type.
    * `filename` - If set, this will be included in the response `Content-Disposition`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  5. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

            void testDecodeWithOffset() throws SMBProtocolDecodingException {
                byte[] buffer = new byte[100];
                int offset = 50;
    
                // Set data at offset
                buffer[offset + 16] = 0x04; // sectPerAlloc
                buffer[offset + 20] = 0x00;
                buffer[offset + 21] = 0x02; // bytesPerSect
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

            if (versionedJavaHome == null) {
                final String exceptionMessage = String.format(
                    Locale.ROOT,
                    "$%s must be set to build Elasticsearch. "
                        + "Note that if the variable was just set you "
                        + "might have to run `./gradlew --stop` for "
                        + "it to be picked up. See https://github.com/elastic/elasticsearch/issues/31399 details.",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

        // file attribute encoding
        /**
         * A file with this bit on as returned by {@code getAttributes()} or set
         * with {@code setAttributes()} will be read-only
         */
        public static final int ATTR_READONLY = 0x01;
        /**
         * A file with this bit on as returned by {@code getAttributes()} or set
         * with {@code setAttributes()} will be hidden
         */
        public static final int ATTR_HIDDEN = 0x02;
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 112.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                    return systemPropMap.get(key);
                }
            };
    
            // Test with new entraid.use.ds key set to false
            systemPropMap.put("entraid.use.ds", "false");
            assertFalse(fessConfig.isEntraIdUseDomainServices());
    
            // Test with new entraid.use.ds key set to true
            systemPropMap.put("entraid.use.ds", "true");
            assertTrue(fessConfig.isEntraIdUseDomainServices());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  9. docs/zh/docs/python-types.md

    没有类型的话,这几乎是不可能做到的。
    
    注意,变量 `item` 是列表 `items` 中的一个元素。
    
    即便如此,编辑器仍然知道它是 `str`,并为此提供支持。
    
    #### 元组和集合 { #tuple-and-set }
    
    声明 `tuple` 和 `set` 的方式类似:
    
    {* ../../docs_src/python_types/tutorial007_py310.py hl[1] *}
    
    这表示:
    
    * 变量 `items_t` 是一个含有 3 个元素的 `tuple`,分别是一个 `int`、另一个 `int`,以及一个 `str`。
    * 变量 `items_s` 是一个 `set`,其中每个元素的类型是 `bytes`。
    
    #### 字典 { #dict }
    
    定义 `dict` 时,需要传入 2 个类型参数,用逗号分隔。
    
    第一个类型参数用于字典的键。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  10. guava-gwt/src/com/google/common/base/Base.gwt.xml

    <module>
    <source path="">
      <!-- Hack to keep collect from hiding collect.testing supersource: -->
      <exclude name="**/testing/**"/>
    </source>
    
    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 19 16:02:36 GMT 2024
    - 1.4K bytes
    - Click Count (0)
Back to Top