Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for TagSet (0.14 sec)

  1. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. docs/site-replication/run-multi-site-ldap.sh

    ./mc tag set minio2/newbucket "key=val1"
    if [ $? -ne 0 ]; then
    	echo "expecting tag set to be successful. exiting.."
    	exit_1
    fi
    
    sleep 10
    
    val=$(./mc tag list minio1/newbucket --json | jq -r .tagset | jq -r .key)
    if [ "${val}" != "val1" ]; then
    	echo "expected bucket tag to have replicated, exiting..."
    	exit_1
    fi
    # stop minio1
    kill -9 ${site1_pid}
    # Update tag on minio2/newbucket when minio1 is down
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (2)
  3. src/encoding/asn1/marshal.go

    		if tag != TagSequence {
    			return nil, StructuralError{"non sequence tagged as set"}
    		}
    		tag = TagSet
    	}
    
    	// makeField can be called for a slice that should be treated as a SET
    	// but doesn't have params.set set, for instance when using a slice
    	// with the SET type name suffix. In this case getUniversalType returns
    	// TagSet, but makeBody doesn't know about that so will treat the slice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. api/go1.6.txt

    pkg encoding/asn1, const TagPrintableString ideal-int
    pkg encoding/asn1, const TagSequence = 16
    pkg encoding/asn1, const TagSequence ideal-int
    pkg encoding/asn1, const TagSet = 17
    pkg encoding/asn1, const TagSet ideal-int
    pkg encoding/asn1, const TagT61String = 20
    pkg encoding/asn1, const TagT61String ideal-int
    pkg encoding/asn1, const TagUTCTime = 23
    pkg encoding/asn1, const TagUTCTime ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1.go

    	// Go type time.Time.
    	if universalTag == TagUTCTime && t.tag == TagGeneralizedTime && t.class == ClassUniversal {
    		universalTag = TagGeneralizedTime
    	}
    
    	if params.set {
    		universalTag = TagSet
    	}
    
    	matchAnyClassAndTag := matchAny
    	expectedClass := ClassUniversal
    	expectedTag := universalTag
    
    	if !params.explicit && params.tag != nil {
    		expectedClass = ClassContextSpecific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/wasm/wasmobj.go

    				p = appendp(p, AGet, regAddr(REG_SP))
    			}
    			for _, f := range wi.Params {
    				// Each load instructions will consume the value of sp on the stack, so
    				// we need to read sp for each param. WASM appears to not have a stack dup instruction
    				// (a strange omission for a stack-based VM), if it did, we'd be using the dup here.
    				p = appendp(p, AGet, regAddr(REG_SP))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            // we can't currently control the order between tags and taglets (limitation on our side)
            javadoc.text =~ /(?ms)Custom Taglet.*custom taglet value/
        }
    
        @Issue(["GRADLE-2520", "https://github.com/gradle/gradle/issues/4993"])
        @Requires(UnitTestPreconditions.Jdk9OrEarlier)
        def canCombineLocalOptionWithOtherOptions() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/wasm/ssa.go

    	if cnt == 0 {
    		return p
    	}
    	if cnt%8 != 0 {
    		base.Fatalf("zerorange count not a multiple of widthptr %d", cnt)
    	}
    
    	for i := int64(0); i < cnt; i += 8 {
    		p = pp.Append(p, wasm.AGet, obj.TYPE_REG, wasm.REG_SP, 0, 0, 0, 0)
    		p = pp.Append(p, wasm.AI64Const, obj.TYPE_CONST, 0, 0, 0, 0, 0)
    		p = pp.Append(p, wasm.AI64Store, 0, 0, 0, obj.TYPE_CONST, 0, off+i)
    	}
    
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        private static final String OPTION_DOENCODING = "docencoding";
        private static final String OPTION_KEYWORDS = "keywords";
        private static final String OPTION_TAG = "tag";
        private static final String OPTION_TAGLET = "taglet";
        private static final String OPTION_TAGLETPATH = "tagletpath";
        private static final String OPTION_DOCFILESSUBDIRS = "docfilessubdirs";
        private static final String OPTION_EXCLUDEDOCFILESSUBDIR = "excludedocfilessubdir";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"container":                 "container is the name of the container in the pods of the scaling taget",
    }
    
    func (ContainerResourceMetricStatus) SwaggerDoc() map[string]string {
    	return map_ContainerResourceMetricStatus
    }
    
    var map_CrossVersionObjectReference = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top