Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,365 for Class2 (0.12 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifactSet.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'maven-publish'
     * }
     *
     * def publication = publishing.publications.create("name", MavenPublication)
     * def artifacts = publication.artifacts
     *
     * artifacts.matching({
     *     it.classifier == "classy"
     * }).all({
     *     it.extension = "ext"
     * })
     * </pre>
     *
     * @see DomainObjectSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java

            maxSetupCount = 0;
        }
    
        void reset( int resumeKey, String lastName ) {
            super.reset();
            this.resumeKey = resumeKey;
            this.filename = lastName;
            flags2 = 0;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            dst[dstIndex++] = subCommand;
            dst[dstIndex++] = (byte)0x00;
            return 2;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/PropertyConfiguration.java

            this.port139FailoverEnabled = Config.getBoolean(p, "jcifs.smb.client.port139.enabled", false);
    
            this.useNTSmbs = Config.getBoolean(p, "jcifs.smb.client.useNTSmbs", true);
    
            this.flags2 = Config.getInt(p, "jcifs.smb.client.flags2", 0);
    
            this.capabilities = Config.getInt(p, "jcifs.smb.client.capabilities", 0);
    
            this.sessionLimit = Config.getInt(p, "jcifs.smb.client.ssnLimit", SmbConstants.DEFAULT_SSN_LIMIT);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/extra-models.md

    Para fazer isso, use a dica de tipo padrão do Python <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>:
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. docs/fr/docs/advanced/additional-responses.md

    !!! info
        À moins que vous ne spécifiiez explicitement un type de média différent dans votre paramètre `responses`, FastAPI supposera que la réponse a le même type de média que la classe de réponse principale (par défaut `application/json`).
    
        Mais si vous avez spécifié une classe de réponse personnalisée avec `None` comme type de média, FastAPI utilisera `application/json` pour toute réponse supplémentaire associée à un modèle.
    
    ## Combinaison d'informations
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-process-resources.graffle

    js6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJS/6oGmg2KFHobaiJqKWowa+/796v/XAcMDswWfB48JfwtvDWM+40DnQutE80b7SP9LB00T+DYZNjo2WzZ8dp22vvbgN/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/bf// $class28$classnameNSMutableDa$classesNSMutableData$classnameNSColorSpac$classesNSColorSpaceN$classnameNSColor$classesNSColorNSObje$archiverNSKeyedArchi$toproot46 b0g0r0MajorGridSpaci 1PrinttrueViewtrueLa.0layoutEnginedotneat.20000000298023224nea.0twopiSep...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

            this.maxSetupCount = 0;
        }
    
    
        @Override
        public void reset ( int rk, String lastName ) {
            super.reset();
            this.resumeKey = rk;
            this.filename = lastName;
            this.flags2 = 0;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            dst[ dstIndex++ ] = getSubCommand();
            dst[ dstIndex++ ] = (byte) 0x00;
            return 2;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.cc

    using ::tensorflow::quantization::RepresentativeDatasetFile;
    
    // A "trampoline" class that redirects virtual function calls to the python
    // implementation.
    //
    // Reference:
    // https://pybind11.readthedocs.io/en/stable/advanced/classes.html#overriding-virtual-functions-in-python
    class PyFunctionLibraryTrampoline : public PyFunctionLibrary {
     public:
      using PyFunctionLibrary::PyFunctionLibrary;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java

                if( byteCount > server.encryptionKeyLength ) {
                    int len = 0;
    // TODO: we can use new string routine here
                    try {
                        if(( flags2 & FLAGS2_UNICODE ) == FLAGS2_UNICODE ) {
                            while( buffer[bufferIndex + len] != (byte)0x00 ||
                                            buffer[bufferIndex + len + 1] != (byte)0x00 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.graffle

    js6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJS/6oGmg2KFHobaiJqKWowa+/796v/XAcMDswWfB48JfwtvDWM+40DnQutE80b7SP9LB00T+DYZNjo2WzZ8dp22vvbgN/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/bf// $class28$classnameNSMutableDa$classesNSMutableData$classnameNSColorSpac$classesNSColorSpaceN$classnameNSColor$classesNSColorNSObje$archiverNSKeyedArchi$toproot46 b0g0r0MajorGridSpaci 1PrinttrueViewtrueLa.0layoutEnginedotneat.20000000298023224nea.0twopiSep...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top