Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for irides (0.32 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                    _src = _src.deferred;
                    int _ridss = _src.dec_ndr_long();
                    int _ridsi = _src.index;
                    _src.advance(8 * _ridss);
    
                    if (rids == null) {
                        if (_ridss < 0 || _ridss > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                        rids = new SamrRidWithAttribute[_ridss];
                    }
                    _src = _src.derive(_ridsi);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 14K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/samr.java

                    int _ridss = _src.dec_ndr_long();
                    int _ridsi = _src.index;
                    _src.advance(8 * _ridss);
    
                    if ( this.rids == null ) {
                        if ( _ridss < 0 || _ridss > 0xFFFF )
                            throw new NdrException(NdrException.INVALID_CONFORMANCE);
                        this.rids = new SamrRidWithAttribute[_ridss];
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 15.1K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelWriter.java

    import java.util.Map;
    
    import org.apache.maven.api.model.Model;
    
    /**
     * Handles serialization of a model into some kind of textual format like XML.
     *
     */
    public interface ModelWriter {
    
        /**
         * Writes the supplied model to the specified file. Any non-existing parent directories of the output file will be
         * created automatically.
         *
         * @param output The file to serialize the model to, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java

    import java.util.Map;
    
    import org.apache.maven.settings.Settings;
    
    /**
     * Handles serialization of settings into some kind of textual format like XML.
     *
     */
    public interface SettingsWriter {
    
        /**
         * Writes the supplied settings to the specified file. Any non-existing parent directories of the output file will
         * be created automatically.
         *
         * @param output The file to serialize the settings to, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/ToolchainsXmlFactory.java

     * under the License.
     */
    package org.apache.maven.api.services.xml;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.toolchain.PersistedToolchains;
    
    /**
     * Reads and writes a {@link PersistedToolchains} object to/from XML.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

                   : VirtualFileManager.constructUrl(StandardFileSystems.FILE_PROTOCOL, path);
        }
    
    
        /**
         * Tries to load the list of modules in the JDK from the 'release' file. Returns null if the 'release' file is not there
         * or doesn't contain the expected information.
         * <p>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

     * other words, the model resolver is stateful and should not be reused across multiple model building requests.
     *
     */
    public interface ModelResolver {
    
        /**
         * Tries to resolve the POM for the specified coordinates.
         *
         * @param groupId The group identifier of the POM, must not be {@code null}.
         * @param artifactId The artifact identifier of the POM, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFileOutputStream.java

            }
        }
    
    
        /**
         * Writes the specified byte to this file output stream.
         *
         * @throws IOException
         *             if a network error occurs
         */
    
        @Override
        public void write ( int b ) throws IOException {
            this.tmp[ 0 ] = (byte) b;
            write(this.tmp, 0, 1);
        }
    
    
        /**
         * Writes b.length bytes from the specified byte array to this
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

            file.close();
            tmp = null;
        }
    
    /**
     * Writes the specified byte to this file output stream.
     *
     * @throws IOException if a network error occurs
     */
    
        public void write( int b ) throws IOException {
            tmp[0] = (byte)b;
            write( tmp, 0, 1 );
        }
    
    /**
     * Writes b.length bytes from the specified byte array to this
     * file output stream.
     *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/ModelXmlFactory.java

     * under the License.
     */
    package org.apache.maven.api.services.xml;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.model.Model;
    
    /**
     * Reads or writes a {@link Model} using XML.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top