Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 271 for Picard (0.18 sec)

  1. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard.jsp

                            <div class="card card-outline card-primary">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.wizard_start_title"/>
                                    </h3>
                                </div>
                                <div class="card-body">
                                        <%-- Message: BEGIN --%>
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  2. internal/ioutil/discard.go

    import (
    	"io"
    )
    
    // Discard is just like io.Discard without the io.ReaderFrom compatible
    // implementation which is buggy on NUMA systems, we have to use a simpler
    // io.Writer implementation alone avoids also unnecessary buffer copies,
    // and as such incurred latencies.
    var Discard io.Writer = discard{}
    
    // discard is /dev/null for Golang.
    type discard struct{}
    
    func (discard) Write(p []byte) (int, error) {
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_start.jsp

                <la:form action="/admin/wizard/">
                    <div class="row">
                        <div class="col-md-12">
                            <div class="card card-outline card-primary">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.wizard_start_crawler_title"/>
                                    </h3>
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_config.jsp

                <la:form action="/admin/wizard/">
                    <div class="row">
                        <div class="col-md-12">
                            <div class="card card-outline card-success">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.wizard_crawling_setting_title"/>
                                    </h3>
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt

        val request = Request(server.url("/"))
        val response1 = client.newCall(request).execute()
        val response2 = client.newCall(request).execute()
        response1.body.string() // Discard the response body.
        response2.body.string() // Discard the response body.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      @Test
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

        }
        File file = out.getFile();
        assertNull(file);
    
        // Write data to go over the threshold
        if (chunk2 > 0) {
          if (JAVA_IO_TMPDIR.value().equals("/sdcard")) {
            assertThrows(IOException.class, () -> write(out, data, chunk1, chunk2, singleByte));
            return;
          }
          write(out, data, chunk1, chunk2, singleByte);
          file = out.getFile();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ja.properties

    labels.data_crawling_button_create_job=新しいジョブの作成
    labels.wizard_title_configuration=構成ウィザード
    labels.wizard_start_title=簡易セットアップ
    labels.wizard_start_desc=構成ウィザードを使用して、簡単にクロール設定を作成することができます。
    labels.wizard_start_button=設定の開始
    labels.wizard_button_cancel=キャンセル
    labels.wizard_crawling_config_title=クロールの設定
    labels.wizard_crawling_setting_title=クロールの設定
    labels.wizard_crawling_config_name=名前
    labels.wizard_crawling_config_path=クロールパス
    Properties
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/app/web/admin/wizard/IndexForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.wizard;
    
    public class IndexForm {
    
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 698 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

            responseBodyComplete()
          }
          return read
        }
    
        override fun close() {
          if (closed) return
    
          if (bytesRemaining != 0L &&
            !discard(ExchangeCodec.DISCARD_STREAM_TIMEOUT_MILLIS, MILLISECONDS)
          ) {
            carrier.noNewExchanges() // Unread bytes remain on the stream.
            responseBodyComplete()
          }
    
          closed = true
        }
      }
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    	br.ReadRune()
    	br.Discard(1)
    	if err := br.UnreadRune(); err == nil {
    		t.Error("UnreadRune didn't fail after Discard")
    	}
    }
    
    func TestNoUnreadByteAfterDiscard(t *testing.T) {
    	br := NewReader(strings.NewReader("example"))
    	br.ReadByte()
    	br.Discard(1)
    	if err := br.UnreadByte(); err == nil {
    		t.Error("UnreadByte didn't fail after Discard")
    	}
    }
    
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
Back to top