Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for BR (0.21 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * gl=gl<br>
         * gu=gu<br>
         * he=he<br>
         * hi=hi<br>
         * hr=hr<br>
         * hu=hu<br>
         * hy=hy<br>
         * id=id<br>
         * it=it<br>
         * ja=ja<br>
         * ko=ko<br>
         * lt=lt<br>
         * lv=lv<br>
         * mk=mk<br>
         * ml=ml<br>
         * nl=nl<br>
         * no=no<br>
         * pa=pa<br>
         * pl=pl<br>
         * pt=pt<br>
         * pt-br=pt-br<br>
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. okhttp-brotli/src/main/kotlin/okhttp3/brotli/internal/Uncompress.kt

        return response
      }
      val body = response.body
      val encoding = response.header("Content-Encoding") ?: return response
    
      val decompressedSource =
        when {
          encoding.equals("br", ignoreCase = true) ->
            BrotliInputStream(body.source().inputStream()).source().buffer()
          encoding.equals("gzip", ignoreCase = true) ->
            GzipSource(body.source()).buffer()
          else -> return response
        }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 01 13:19:01 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. .cm/plugins/filters/summaryTable/index.js

        let result = `:bar_chart: **Changes by ${title}: this PR is ${Math.round(newRatio, 2)}% new code**`;
    
        // Only title by Platform
        if (title === "Platform") {
            result += `
      <br>${platformsAffected(preppedStatistics)}`;
        }
    
        result += `
      <details>
      <summary>See details</summary>
      <table>
                <tr>
                    <td>${title}</td>
                    <td>Added Lines</td>
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    hi=hi\n\
    hr=hr\n\
    hu=hu\n\
    hy=hy\n\
    id=id\n\
    it=it\n\
    ja=ja\n\
    ko=ko\n\
    lt=lt\n\
    lv=lv\n\
    mk=mk\n\
    ml=ml\n\
    nl=nl\n\
    no=no\n\
    pa=pa\n\
    pl=pl\n\
    pt=pt\n\
    pt-br=pt-br\n\
    pt_BR=pt-br\n\
    ro=ro\n\
    ru=ru\n\
    si=si\n\
    sq=sq\n\
    sv=sv\n\
    ta=ta\n\
    te=te\n\
    th=th\n\
    tl=tl\n\
    tr=tr\n\
    uk=uk\n\
    ur=ur\n\
    vi=vi\n\
    zh-cn=zh-cn\n\
    zh_CN=zh-cn\n\
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            def changeId = (change.type + change.member).replaceAll('[^a-zA-Z0-9]', '_')
            Violation violation = Violation.error(
                member,
                rejection.getHumanExplanation() + """.
                    <br>
                    <p>
                    If you did this intentionally, please accept the change and provide an explanation:
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  6. cmd/tier.go

    	b, err := config.Bytes()
    	if err != nil {
    		return nil, nil, err
    	}
    
    	payloadSize := int64(len(b))
    	br := bytes.NewReader(b)
    	hr, err := hash.NewReader(ctx, br, payloadSize, "", "", payloadSize)
    	if err != nil {
    		return nil, nil, err
    	}
    	if GlobalKMS == nil {
    		return NewPutObjReader(hr), &ObjectOptions{MaxParity: true}, nil
    	}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 05:09:58 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  7. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

      fun bodyResponseUnknownEncoded() {
        setLevel(Level.BODY)
        server.enqueue(
          MockResponse.Builder() // It's invalid to return this if not requested, but the server might anyway
            .setHeader("Content-Encoding", "br")
            .setHeader("Content-Type", PLAIN)
            .body(Buffer().write("iwmASGVsbG8sIEhlbGxvLCBIZWxsbwoD".decodeBase64()!!))
            .build(),
        )
        val response = client.newCall(request().build()).execute()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 09:14:38 GMT 2024
    - 37.6K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    		}
    		dialer.TLSConfig = c.tlsConfig
    		dialStarted := time.Now()
    		if debugPrint {
    			fmt.Println(c.Local, "Connecting to ", toDial)
    		}
    		conn, br, _, err := dialer.Dial(c.ctx, toDial)
    		if br != nil {
    			ws.PutReader(br)
    		}
    		c.connMu.Lock()
    		c.debugOutConn = conn
    		c.connMu.Unlock()
    		retry := func(err error) {
    			if debugPrint {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	BC 20,undefined_symbol,LR       // BC $20,CR0LT,LR // 4e800020
    	BC 20,undefined_symbol+1,LR     // BC $20,CR0GT,LR // 4e810020
    	JMP LR                          // 4e800020
    	BR LR                           // JMP LR // 4e800020
    	BCL $20,CR0LT,$1,LR             // 4e800821
    	BCL $20,CR0LT,$0,LR             // 4e800021
    	BCL $20,CR0LT,LR                // 4e800021
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

                The source control management system URL
                that describes the repository and how to connect to the
                repository.
                This connection is read-only.
                <br><b>Default value is</b>: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if
                scm's {@code child.scm.connection.inherit.append.path="false"}
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top