Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for tagKey (0.07 sec)

  1. src/cmd/api/main_test.go

    }
    
    // Disable before debugging non-obvious errors from the type-checker.
    const usePkgCache = true
    
    var (
    	pkgCache = map[string]*apiPackage{} // map tagKey to package
    	pkgTags  = map[string][]string{}    // map import dir to list of relevant tags
    )
    
    // tagKey returns the tag-based key to use in the pkgCache.
    // It is a comma-separated string; the first part is dir, the rest tags.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Feb 20 03:25:33 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields);
    
                switch (tagged.getTagNo()) {
                case 0: // Ticket Flags
                    break;
                case 1: // Key
                    break;
                case 2: // Realm
                    DERGeneralString derRealm = ASN1Util.as(DERGeneralString.class, tagged);
                    this.userRealm = derRealm.getString();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/NegTokenInit.java

                }
                ASN1TaggedObject tagged = (ASN1TaggedObject) vec.getObjectAt(1);
                if (tagged.getTagNo() != 0) {
                    throw new IOException("Malformed SPNEGO token: tag " + tagged.getTagNo() + " " + tagged);
                }
                ASN1Sequence sequence = ASN1Sequence.getInstance(tagged, true);
                final Enumeration<ASN1Object> fields = sequence.getObjects();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. ci/official/installer_wheel.sh

    # Save the current working directory and then switch to the output directory.
    pushd "${TFCI_OUTPUT_DIR}"
    
    # Unpack the wheel to get all the file contents. The pure python wheel we built
    # above is tagged with "py3-none-any". We cannot change the tags by simply
    # renaming the wheels as uploading to PyPI would fail with "File already exists"
    # error. In order to upload to PyPI, we unpack the wheel and change the tag
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Mar 04 22:39:12 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/spnego/NegTokenTarg.java

                ASN1TaggedObject tagged = (ASN1TaggedObject) der.readObject();
                final ASN1Sequence sequence = ASN1Sequence.getInstance(tagged, true);
                final Enumeration<?> fields = sequence.getObjects();
                while (fields.hasMoreElements()) {
                    tagged = (ASN1TaggedObject) fields.nextElement();
                    switch (tagged.getTagNo()) {
                    case 0:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

            Enumeration<?> fields = sequence.getObjects();
            while (fields.hasMoreElements()) {
                ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields);
                switch (tagged.getTagNo()) {
                case 0:// Kerberos version
                    ASN1Integer tktvno = ASN1Util.as(ASN1Integer.class, tagged);
                    if (!tktvno.getValue().equals(new BigInteger(KerberosConstants.KERBEROS_VERSION))) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/ASN1Util.java

            return as(type, stream.readObject());
        }
    
        /**
         * Extracts the base object from an ASN.1 tagged object and casts it to the specified type
         * @param <T> the target ASN.1 primitive type
         * @param type the target class type
         * @param tagged the ASN.1 tagged object
         * @return tagged object contents cast to type
         * @throws PACDecodingException if types are incompatible
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

            Enumeration<?> fields = seq.getObjects();
            while (fields.hasMoreElements()) {
                ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields.nextElement());
                switch (tagged.getTagNo()) {
                case 0:
                    ASN1Integer pvno = ASN1Util.as(ASN1Integer.class, tagged);
                    if (!pvno.getValue().equals(new BigInteger(KerberosConstants.KERBEROS_VERSION))) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/pac/ASN1UtilTest.java

            // Test successful casting from tagged object
            ASN1Integer content = new ASN1Integer(789);
            ASN1TaggedObject tagged = new DERTaggedObject(true, 1, content);
            ASN1Integer result = ASN1Util.as(ASN1Integer.class, tagged);
            assertSame(content, result);
        }
    
        @Test
        void testAs_ASN1TaggedObject_Failure() {
            // Test failed casting from tagged object
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. docs/site-replication/run-multi-site-minio-idp.sh

    if [ $? -ne 0 ]; then
    	echo "expecting tag set to be successful. exiting.."
    	exit_1
    fi
    sleep 5
    val=$(./mc tag list minio1/newbucket/README.md --version-id "${vID}" --json | jq -r .tagset.key)
    if [ "${val}" != "val" ]; then
    	echo "expected bucket tag to have replicated, exiting..."
    	exit_1
    fi
    ./mc tag remove --version-id "${vID}" minio2/newbucket/README.md
    if [ $? -ne 0 ]; then
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top