Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 308 for tenc (0.15 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/kotlin/build.gradle.kts

    }
    // end::root[]
    
    project(":domain") {
        apply(plugin = "java-library")
        repositories { mavenCentral() }
        dependencies {
            "api"("javax.measure:unit-api:1.0")
            "implementation"("tec.units:unit-ri:1.0.3")
        }
    }
    
    project(":infra") {
        apply(plugin = "java-library")
        apply(plugin = "com.github.johnrengelman.shadow")
        configure<ShadowExtension> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacMac.java

            }
            byte[] enc = constant;
            int klen = keybytes.length;
            byte[] dk = new byte[klen];
            for ( int n = 0; n < klen; ) {
                byte[] block = cipher.doFinal(enc);
                int len = Math.min(klen - n, block.length);
                System.arraycopy(block, 0, dk, n, len);
                n += len;
                enc = block;
            }
            return dk;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
  3. src/log/slog/json_handler_test.go

    		}
    		if got != want {
    			t.Errorf("%v: got %s, want %s", value, got, want)
    		}
    	}
    }
    
    func marshalJSON(x any) (string, error) {
    	var buf bytes.Buffer
    	enc := json.NewEncoder(&buf)
    	enc.SetEscapeHTML(false)
    	if err := enc.Encode(x); err != nil {
    		return "", err
    	}
    	return strings.TrimSpace(buf.String()), nil
    }
    
    func TestJSONAppendAttrValueSpecial(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/Encdec.java

            return Double.longBitsToDouble(dec_uint64be(src, si));
        }
    
    
        /*
         * Encode times
         */
    
        public static int enc_time ( Date date, byte[] dst, int di, int enc ) {
            long t;
    
            switch ( enc ) {
            case TIME_1970_SEC_32BE:
                return enc_uint32be((int) ( date.getTime() / 1000L ), dst, di);
            case TIME_1970_SEC_32LE:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm_test.go

    		{"[Y21-Y24]", REG_Y21, REG_Y24},
    
    		{"[Z0-Z3]", REG_Z0, REG_Z3},
    		{"[Z21-Z24]", REG_Z21, REG_Z24},
    	}
    
    	for _, test := range tests {
    		enc := EncodeRegisterRange(test.reg0, test.reg1)
    		reg0, reg1 := decodeRegisterRange(enc)
    
    		if int16(reg0) != test.reg0 {
    			t.Errorf("%s reg0 mismatch: have %d, want %d",
    				test.printed, reg0, test.reg0)
    		}
    		if int16(reg1) != test.reg1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/BigIntegerMath.java

            approxPow = approxPow.divide(BigInteger.TEN);
            approxCmp = approxPow.compareTo(x);
          } while (approxCmp > 0);
        } else {
          BigInteger nextPow = BigInteger.TEN.multiply(approxPow);
          int nextCmp = nextPow.compareTo(x);
          while (nextCmp <= 0) {
            approxLog10++;
            approxPow = nextPow;
            approxCmp = nextCmp;
            nextPow = BigInteger.TEN.multiply(approxPow);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. cmd/erasure-coding.go

    	}
    
    	// Encoder when needed.
    	var enc reedsolomon.Encoder
    	var once sync.Once
    	e.encoder = func() reedsolomon.Encoder {
    		once.Do(func() {
    			e, err := reedsolomon.New(dataBlocks, parityBlocks, reedsolomon.WithAutoGoroutines(int(e.ShardSize())))
    			if err != nil {
    				// Error conditions should be checked above.
    				panic(err)
    			}
    			enc = e
    		})
    		return enc
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_amd64.s

    	AESDECLAST X1, X0
    	MOVUPS X0, 0(DX)
    	RET
    
    // func expandKeyAsm(nr int, key *byte, enc, dec *uint32) {
    // Note that round keys are stored in uint128 format, not uint32
    TEXT ·expandKeyAsm(SB),NOSPLIT,$0
    	MOVQ nr+0(FP), CX
    	MOVQ key+8(FP), AX
    	MOVQ enc+16(FP), BX
    	MOVQ dec+24(FP), DX
    	MOVUPS (AX), X0
    	// enc
    	MOVUPS X0, (BX)
    	ADDQ $16, BX
    	PXOR X4, X4 // _expand_key_* expect X4 to be zero
    	CMPL CX, $12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_3site_replication.sh

    head -c 221227088 </dev/urandom >200M
    ./mc.RELEASE.2021-03-12T03-36-59Z cp --config-dir ~/.mc --encrypt "sitea" --quiet 200M "sitea/bucket/200M-enc-v1"
    ./mc.RELEASE.2021-03-12T03-36-59Z cp --config-dir ~/.mc --quiet 200M "sitea/bucket/200M-v1"
    
    ./mc cp --enc-s3 "sitea" --quiet 200M "sitea/bucket/200M-enc-v2"
    ./mc cp --quiet 200M "sitea/bucket/200M-v2"
    
    sleep 10
    
    echo "Verifying ETag for all objects"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/clone_constants_for_better_clustering.h

    // too much.  Moreover, in practice the constants we have to duplicate are
    // things like the `perm` input to `Transpose` and the `size` input to `Slice`
    // which tend to be small anyway.
    
    class CloneConstantsForBetterClusteringPass : public GraphOptimizationPass {
     public:
      CloneConstantsForBetterClusteringPass() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 23:57:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top