Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for formados (0.05 sec)

  1. cmd/format-erasure.go

    			// with V1 format version.
    			if len(formats[i].Erasure.Sets) > 1 {
    				return nil
    			}
    			if formats[i].Erasure.This == "" {
    				formats[i].Erasure.This = formats[i].Erasure.Sets[0][i]
    				// Heal the drive if drive has .This empty.
    				if err := saveFormatErasure(storageDisks[i], formats[i], mustGetUUID()); err != nil {
    					return err
    				}
    			}
    			return nil
    		}, i)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  2. cmd/format-erasure_test.go

    	formats := make([]*formatErasureV3, 8)
    
    	for j := range 8 {
    		newFormat := format.Clone()
    		newFormat.Erasure.This = format.Erasure.Sets[0][j]
    		formats[j] = newFormat
    	}
    
    	formats[1] = nil
    	expThis := formats[2].Erasure.This
    	formats[2].Erasure.This = ""
    	if err := fixFormatErasureV3(storageDisks, endpoints, formats); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                final long time = Joda.forPattern(format).parseMillis(value);
                return new Date(time);
            } catch (final Exception e) {
                return null;
            }
        }
    
        /**
         * Formats a Date object to ISO datetime string format in UTC timezone.
         *
         * @param date the date to format
         * @return formatted date string, or empty string if date is null
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  4. docs/pt/docs/tutorial/security/index.md

    # Segurança
    
    Há várias formas de lidar segurança, autenticação e autorização.
    
    E isso normalmente é um tópico “difícil” e complexo.
    
    Em muitos frameworks e sistemas, apenas lidar com segurança e autenticação exige muito esforço e código (em muitos casos isso pode ser 50% ou mais de todo o código escrito).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/security/index.md

    # Seguridad
    
    Hay muchas formas de manejar la seguridad, autenticación y autorización.
    
    Y normalmente es un tema complejo y "difícil".
    
    En muchos frameworks y sistemas, solo manejar la seguridad y autenticación requiere una gran cantidad de esfuerzo y código (en muchos casos puede ser el 50% o más de todo el código escrito).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  6. cmd/erasure-sets.go

       fi
    fi
    */
    
    func formatsToDrivesInfo(endpoints Endpoints, formats []*formatErasureV3, sErrs []error) (beforeDrives []madmin.HealDriveInfo) {
    	beforeDrives = make([]madmin.HealDriveInfo, len(endpoints))
    	// Existing formats are available (i.e. ok), so save it in
    	// result, also populate disks to be healed.
    	for i, format := range formats {
    		drive := endpoints.GetString(i)
    		state := madmin.DriveStateCorrupt
    		switch {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 37K bytes
    - Viewed (1)
  7. src/test/java/jcifs/context/BaseContextTest.java

            }
        }
    
        @Test
        @DisplayName("get method should handle various URL formats")
        void testGetSmbResourceWithVariousURLs() throws CIFSException {
            // Test different valid URL formats
            String[] validUrls = { "smb://server/share/", "smb://server/share/file.txt", "smb://user:pass@server/share/file.txt",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeTest.java

            assertEquals(4, bytesWritten);
            assertEquals(SmbComTransaction.TRANS_WAIT_NAMED_PIPE, dst[0]);
        }
    
        @Test
        @DisplayName("Test with various pipe name formats")
        void testVariousPipeNameFormats() {
            // Test various pipe name formats
            String[] pipeNames =
                    { "\\\\server\\PIPE\\testpipe", "\\PIPE\\LANMAN", "\\PIPE\\srvsvc", "\\PIPE\\wkssvc", "PIPE\\test", "testpipe" };
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/netbios/LmhostsTest.java

            assertNull(result);
        }
    
        @Test
        void testPopulateWithVariousIPFormats() throws Exception {
            // Create a temporary lmhosts file with various IP formats
            File lmhostsFile = tempDir.resolve("lmhosts_ips").toFile();
            try (FileWriter writer = new FileWriter(lmhostsFile)) {
                writer.write("1.2.3.4 HOST1\n");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_es.properties

    labels.advance_search_should_queries=Contiene cualquiera de las palabras
    labels.advance_search_not_queries=No contiene las palabras
    labels.advance_search_filetype=Formato de archivo
    labels.advance_search_filetype_default=Todos los formatos
    labels.advance_search_filetype_html=HTML
    labels.advance_search_filetype_pdf=PDF
    labels.advance_search_filetype_word=MS Word
    labels.advance_search_filetype_excel=MS Excel
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
Back to top