Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Sk (0.33 sec)

  1. src/internal/coverage/slicewriter/slw_test.go

    	sleq(t, ws.BytesWritten(), wpex)
    	rf(t, ws, []byte{})
    
    	// seeks and reads.
    	sk(t, ws, 1, io.SeekStart)
    	rf(t, ws, []byte{2, 7})
    	sk(t, ws, -2, io.SeekCurrent)
    	rf(t, ws, []byte{2, 7})
    	sk(t, ws, -4, io.SeekEnd)
    	rf(t, ws, []byte{2, 7})
    	off := sk(t, ws, 0, io.SeekEnd)
    	sk(t, ws, off, io.SeekStart)
    
    	// seek back and overwrite
    	sk(t, ws, 1, io.SeekStart)
    	wf(t, ws, []byte{9, 11})
    	wpex = []byte{1, 9, 11, 8, 9}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmContext.java

            byte[] sk = this.signKey;
            if ( sk == null ) {
                throw new CIFSException("Signing is not initialized");
            }
    
            int seqNum = this.signSequence.getAndIncrement();
            byte[] seqBytes = new byte[4];
            SMBUtil.writeInt4(seqNum, seqBytes, 0);
    
            MessageDigest mac = Crypto.getHMACT64(sk);
            mac.update(seqBytes); // sequence
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  3. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

                PgpSignatory si = null
                PGPPublicKey pk = null
                PGPSecretKey sk = null
                try {
                    si = factory.createSignatory(name, keyId, keyRingFile, password)
                    sk = factory.readSecretKey(keyId, keyRingFile)
                    pk = sk.publicKey
                } catch (Exception ex) {
                    // invalid keyring
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    		if at.IsArray() {
    			return makeOf(a, OpArrayMake0, nil)
    		}
    		if at.IsStruct() {
    			return makeOf(a, OpStructMake0, nil)
    		}
    		return a
    	}
    
    	sk := selKey{from: container, size: 0, offsetOrIndex: rc.storeOffset, typ: at}
    	dupe := x.commonSelectors[sk]
    	if dupe != nil {
    		if a == nil {
    			return dupe
    		}
    		a.copyOf(dupe)
    		return a
    	}
    
    	var argStore [10]*Value
    	args := argStore[:0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/expr.go

    				}
    
    				// No pushtype allowed here. Tried and rejected.
    				sk.Value = Expr(sk.Value)
    				sk.Value = AssignConv(sk.Value, sk.Field.Type, "field value")
    				ls[i] = sk
    			}
    		}
    
    		n.SetOp(ir.OSTRUCTLIT)
    	}
    
    	return n
    }
    
    // tcStructLitKey typechecks an OKEY node that appeared within a
    // struct literal.
    func tcStructLitKey(typ *types.Type, kv *ir.KeyExpr) *ir.StructKeyExpr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/endpointshards.go

    type ShardKey struct {
    	Cluster  cluster.ID
    	Provider provider.ID
    }
    
    func (sk ShardKey) String() string {
    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    }
    
    // MarshalText implements the TextMarshaler interface (for json key usage)
    func (sk ShardKey) MarshalText() (text []byte, err error) {
    	return []byte(sk.String()), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/Striped64.java

      private static final long busyOffset;
    
      static {
        try {
          UNSAFE = getUnsafe();
          Class<?> sk = Striped64.class;
          baseOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("base"));
          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/Striped64.java

      private static final long busyOffset;
    
      static {
        try {
          UNSAFE = getUnsafe();
          Class<?> sk = Striped64.class;
          baseOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("base"));
          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/Striped64.java

      private static final long busyOffset;
    
      static {
        try {
          UNSAFE = getUnsafe();
          Class<?> sk = Striped64.class;
          baseOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("base"));
          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/unicode/script_test.go

    	{0x1bb2, "Nd"},
    	{0x10147, "Nl"},
    	{0x2478, "No"},
    	{0xfe33, "Pc"},
    	{0x2011, "Pd"},
    	{0x301e, "Pe"},
    	{0x2e03, "Pf"},
    	{0x2e02, "Pi"},
    	{0x0022, "Po"},
    	{0x2770, "Ps"},
    	{0x00a4, "Sc"},
    	{0xa711, "Sk"},
    	{0x25f9, "Sm"},
    	{0x2108, "So"},
    	{0x2028, "Zl"},
    	{0x2029, "Zp"},
    	{0x202f, "Zs"},
    	// Unifieds.
    	{0x04aa, "L"},
    	{0x0009, "C"},
    	{0x1712, "M"},
    	{0x0031, "N"},
    	{0x00bb, "P"},
    	{0x00a2, "S"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
Back to top