Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for setchr (0.14 sec)

  1. guava/src/com/google/common/primitives/Chars.java

      }
    
      /**
       * Returns the {@code char} value whose big-endian representation is stored in the first 2 bytes
       * of {@code bytes}; equivalent to {@code ByteBuffer.wrap(bytes).getChar()}. For example, the
       * input byte array {@code {0x54, 0x32}} would yield the {@code char} value {@code '\\u5432'}.
       *
       * <p>Arguably, it's preferable to use {@link java.nio.ByteBuffer}; that library exposes much more
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

     • Subtract q·v from the current section of u.
     • Add q to the corresponding section of the result quo.
    
    When all digits have been processed, the final remainder is left in u
    and returned as rem.
    
    For example, here is a sketch of dividing 5 digits by 3 digits (n=3, m=2).
    
    	                 q₂ q₁ q₀
    	         _________________
    	v₂ v₁ v₀ ) u₄ u₃ u₂ u₁ u₀
    	           ↓  ↓  ↓  |  |
    	          [u₄ u₃ u₂]|  |
    	        - [  q₂·v  ]|  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Properties removed in Checkstyle and PMD plugins
    
    * The `configDir` getters and setters have been removed from the Checkstle task and extension.
    Use the `configDirectory` property instead.
    * The `rulePriority` getter and setter have been removed from the Pmd task and extension.
    Use the `rulesMinimumPriority` property instead.
    
    ==== Removal of `baseName` property in `distribution` plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileUnchanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    
    	t.Run("credential fetcher downtime", func(t *testing.T) {
    		// This ensures our pre-warming is resilient to temporary downtime of the CA
    		dir := mktemp()
    		a := Setup(t, func(a AgentTest) AgentTest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    org/apache/maven/wagon/Streams.class package org.apache.maven.wagon; public synchronized class Streams { private String out; private String err; public void Streams(); public String getOut(); public void setOut(String); public String getErr(); public void setErr(String); } org/apache/maven/wagon/InputData.class package org.apache.maven.wagon; public synchronized class InputData { private java.io.InputStream inputStream; private resource.Resource resource; public void InputData(); public java.io.InputStream...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 45.2K bytes
    - Viewed (1)
  6. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	"VCMPEQUQCC",
    	"VCMPEQUQ",
    	"VCLZDM",
    	"VCLRRB",
    	"VCLRLB",
    	"VCFUGED",
    	"STXVRWX",
    	"STXVRHX",
    	"STXVRDX",
    	"STXVRBX",
    	"STXVPX",
    	"STXVP",
    	"SETNBCR",
    	"SETNBC",
    	"SETBCR",
    	"SETBC",
    	"PEXTD",
    	"PDEPD",
    	"MTVSRWM",
    	"MTVSRQM",
    	"MTVSRHM",
    	"MTVSRDM",
    	"MTVSRBMI",
    	"MTVSRBM",
    	"LXVRWX",
    	"LXVRHX",
    	"LXVRDX",
    	"LXVRBX",
    	"LXVPX",
    	"LXVP",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    	C.realloc(nil, x)
    	C.memcpy(nil, nil, x)
    	C.memcmp(nil, nil, x)
    	C.memmove(nil, nil, x)
    	C.strncpy(nil, nil, x)
    	C.strncmp(nil, nil, x)
    	C.strncat(nil, nil, x)
    	x = C.strxfrm(nil, nil, x)
    	C.memchr(nil, 0, x)
    	x = C.strcspn(nil, nil)
    	x = C.strspn(nil, nil)
    	C.memset(nil, 0, x)
    	x = C.strlen(nil)
    	_ = x
    }
    
    // issue 6612
    
    func testNaming(t *testing.T) {
    	C.myfunc()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top