Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 374 for inherited (0.18 sec)

  1. tests/test_inherited_custom_class.py

    Sebastián Ramírez <******@****.***> 1688749933 +0200
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. tests/test_union_inherited_body.py

    Sebastián Ramírez <******@****.***> 1688749933 +0200
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

         * Returns the flags for this ACE. The <tt>isInherited()</tt>
         * method checks the <tt>FLAGS_INHERITED</tt> bit in these flags.
         * 
         * @return the ACE flags
         */
        int getFlags ();
    
    
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
         * Note: For reasons not fully understood, <tt>FLAGS_INHERITED</tt> may
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ACE.java

            return allow;
        }
        /**
         * Returns true if this ACE is an inherited ACE and false if it is a direct ACE.
         * <p>
         * Note: For reasons not fully understood, <tt>FLAGS_INHERITED</tt> may
         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dtyp/ACE.java

        }
    
    
        @Override
        public boolean isInherited () {
            return ( this.flags & FLAGS_INHERITED ) != 0;
        }
    
    
        @Override
        public int getFlags () {
            return this.flags;
        }
    
    
        @Override
        public String getApplyToText () {
            switch ( this.flags & ( FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT | FLAGS_INHERIT_ONLY ) ) {
            case 0x00:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

            <executions>
              <execution>
                <id>inherited-execution</id>
                <inherited>true</inherited>
                <phase>validate</phase>
                <goals>
                  <goal>log-string</goal>
                </goals>
                <configuration>
                  <logFile>target/executions.txt</logFile>
                  <string>inherited-execution</string>
                </configuration>
              </execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-configuration</artifactId>
              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/java/org/apache/maven/internal/impl/model/MavenModelMergerTest.java

    import static org.junit.jupiter.api.Assertions.assertNull;
    
    class MavenModelMergerTest {
        private MavenModelMerger modelMerger = new MavenModelMerger();
    
        // modelVersion is neither inherited nor injected
        @Test
        void testMergeModel_ModelVersion() {
            Model parent = Model.newBuilder().modelVersion("4.0.0").build();
            Model model = Model.newInstance();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-configuration</artifactId>
              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  10. maven-compat/src/test/resources/inheritance-repo/t12/p0/pom.xml

            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>test</id>
    
                <!--  The key to this test... -->
                <inherited>false</inherited>
    
                <goals>
                  <goal>compile</goal>
                </goals>
                <phase>install</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 672 bytes
    - Viewed (0)
Back to top