Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 361 for woff (0.01 sec)

  1. docs/bucket/lifecycle/setup_ilm_transition.sh

    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	if [ $# -ne 0 ]; then
    		exit $#
    	fi
    }
    
    catch
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. buildscripts/upgrade-tests/minio.env

    MINIO_ACCESS_KEY=minioadmin
    MINIO_SECRET_KEY=minioadmin
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Nov 21 18:41:30 UTC 2021
    - 74 bytes
    - Viewed (0)
  3. cmd/veeam-sos-api.go

    	default:
    		return nil, errFileNotFound
    	}
    
    	etag := getMD5Hash(buf)
    	r := bytes.NewReader(buf)
    
    	off, length := int64(0), r.Size()
    	if rs != nil {
    		off, length, err = rs.GetOffsetLength(r.Size())
    		if err != nil {
    			return nil, err
    		}
    	}
    	r.Seek(off, io.SeekStart)
    
    	return NewGetObjectReaderFromReader(io.LimitReader(r, length), ObjectInfo{
    		Bucket:      bucket,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 00:34:56 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComReadAndXResponseTest.java

            assertNotNull(response);
            assertEquals(b, response.b);
            assertEquals(0, response.off);
        }
    
        @Test
        public void testSetParam() {
            byte[] b = new byte[0];
            response.setParam(b, 0);
            assertEquals(b, response.b);
            assertEquals(0, response.off);
        }
    
        @Test
        public void testWriteParameterWordsWireFormat() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. cmd/testdata/undeleteable-object.tgz

    ir","value":""}]},"notify_amqp":{"_":[{"key":"enable","value":"off"},{"key":"url","value":""},{"key":"exchange","value":""},{"key":"exchange_type","value":""},{"key":"routing_key","value":""},{"key":"mandatory","value":"off"},{"key":"durable","value":"off"},{"key":"no_wait","value":"off"},{"key":"internal","value":"off"},{"key":"auto_deleted","value":"off"},{"key":"delivery_mode","value":"0"},{"key":"publisher_confirms","value":"off"},{"key":"queue_limit","value":"0"},{"key":"queue_dir","value":...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  6. dbflute_fess/_project.bat

    @echo off
    
    set ANT_OPTS=-Xmx512m
    
    set DBFLUTE_HOME=..\mydbflute\dbflute-1.x
    
    set MY_PROPERTIES_PATH=build.properties
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 09 03:32:24 UTC 2016
    - 161 bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacDataInputStream.java

         * @param b the byte array to read into
         * @param off the start offset in the array
         * @param len the number of bytes to read
         * @throws IOException if an I/O error occurs
         */
        public void readFully(final byte[] b, final int off, final int len) throws IOException {
            this.dis.readFully(b, off, len);
        }
    
        /**
         * Reads a 16-bit character value with proper alignment.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/TransTransactNamedPipe.java

        private final byte[] pipeData;
        private final int pipeFid, pipeDataOff, pipeDataLen;
    
        TransTransactNamedPipe(final int fid, final byte[] data, final int off, final int len) {
            pipeFid = fid;
            pipeData = data;
            pipeDataOff = off;
            pipeDataLen = len;
            command = SMB_COM_TRANSACTION;
            subCommand = TRANS_TRANSACT_NAMED_PIPE;
            maxParameterCount = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/NtlmMessage.java

            writeUShort(dest, offset + 2, length);
            return offset + 4;
        }
    
        static int writeSecurityBufferContent(final byte[] dest, final int pos, final int off, final byte[] src) {
            writeULong(dest, off, pos);
            if (src != null && src.length > 0) {
                System.arraycopy(src, 0, dest, pos, src.length);
                return src.length;
            }
            return 0;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/LittleEndianDataOutputStream.java

      public LittleEndianDataOutputStream(OutputStream out) {
        super(new DataOutputStream(Preconditions.checkNotNull(out)));
      }
    
      @Override
      public void write(byte[] b, int off, int len) throws IOException {
        // Override slow FilterOutputStream impl
        out.write(b, off, len);
      }
    
      @Override
      public void writeBoolean(boolean v) throws IOException {
        ((DataOutputStream) out).writeBoolean(v);
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top