Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for readOnly (1.86 sec)

  1. src/test/java/jcifs/smb/DosFileFilterTest.java

                "3, 1, true", // READONLY | HIDDEN vs READONLY
                "3, 2, true", // READONLY | HIDDEN vs HIDDEN
                "3, 3, true", // READONLY | HIDDEN vs READONLY | HIDDEN
                "48, 16, true", // DIRECTORY | ARCHIVE vs DIRECTORY
                "48, 32, true", // DIRECTORY | ARCHIVE vs ARCHIVE
                "21, 5, true", // READONLY | SYSTEM | DIRECTORY vs READONLY | SYSTEM
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/webapp/js/clipboard.min.js

    Error('Invalid "target" value, use a valid Element');if("copy"===n&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===n&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes')}return t?f(t,{container:o}):e?"cut"===n?a(e):f(e,{container:o}):void 0};function p(t){return(p="function"==typeof Sym...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbCopyUtilTest.java

            // Verify we removed READONLY on the path before retrying
            verify(dest).setPathInformation(currentAttrs & ~SmbConstants.ATTR_READONLY, 0L, 0L, 0L);
            verify(dest, times(2)).openUnshared(anyInt(), anyInt(), anyInt(), anyInt(), anyInt());
        }
    
        @Test
        @DisplayName("openCopyTargetFile rethrows when not READONLY")
        void openCopyTargetFile_rethrowsWhenNotReadonly() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/systeminfo/admin_systeminfo.jsp

                                                  readonly><la:message
                                                key="labels.system_info_system_properties_does_not_exist"/></textarea>
                                </c:if>
                                <c:if test="${!empty fessPropItems}">
    									<textarea id="fessPropData" class="systemInfoData form-control"
                                                  readonly>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

    public final class Constants {
    
        /**
         * Maven home.
         *
         * @since 3.0.0
         */
        @Config(readOnly = true, source = Config.Source.SYSTEM_PROPERTIES)
        public static final String MAVEN_HOME = "maven.home";
    
        /**
         * Maven version.
         *
         * @since 3.0.0
         */
        @Config(readOnly = true, source = Config.Source.SYSTEM_PROPERTIES)
        public static final String MAVEN_VERSION = "maven.version";
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 25 11:08:20 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  6. tests/embedded_struct_test.go

    	"errors"
    	"reflect"
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestEmbeddedStruct(t *testing.T) {
    	type ReadOnly struct {
    		ReadOnly *bool
    	}
    
    	type BasePost struct {
    		Id    int64
    		Title string
    		URL   string
    		ReadOnly
    	}
    
    	type Author struct {
    		ID    string
    		Name  string
    		Email string
    	}
    
    	type HNPost struct {
    		BasePost
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java

         */
        String defaultValue() default "";
    
        /**
         * Specifies whether the configuration property is read-only.
         *
         * @return true if the property is read-only, false otherwise
         */
        boolean readOnly() default false;
    
        /**
         * Property source, which determines when and where the property will be read from or set for consumption.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. tests/customize_field_test.go

    	}
    
    	if err := DB.Table("customize_field_structs").Where("1 = 1").UpdateColumn("field_readonly", "readonly").Error; err != nil {
    		t.Fatalf("failed to update field_readonly column")
    	}
    
    	if err := DB.Where(CustomizeFieldStruct{Name: create.Name, FieldReadonly: "readonly", FieldIgnore: create.FieldIgnore}).First(&CustomizeFieldStruct{}).Error; err != nil {
    		t.Fatalf("Should find result")
    	}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Sep 11 09:33:31 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

         *
         * @return <code>true</code> if the user should not be allowed to configure the parameter directly
         */
        boolean readonly() default false;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

        }
    
        public void test_generate_withInvalidOutputPath() throws IOException {
            // Test generation with non-writable output file
            File readOnlyDir = Files.createTempDirectory(tempDir, "readonly").toFile();
            readOnlyDir.setWritable(false);
            File invalidOutputFile = new File(readOnlyDir, "thumbnail.png");
    
            String thumbnailId = "test-thumbnail-003";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top