Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 87 for flagname (0.13 sec)

  1. istioctl/pkg/tag/generate_test.go

    	tcs := []struct {
    		name        string
    		webhook     admitv1.MutatingWebhookConfiguration
    		tagName     string
    		whURL       string
    		whSVC       string
    		whCA        string
    		numWebhooks int
    	}{
    		{
    			name:        "webhook-pointing-to-service",
    			webhook:     revisionCanonicalWebhook,
    			tagName:     "canary",
    			whURL:       "",
    			whSVC:       "istiod-revision",
    			whCA:        "ca",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

            default:
                if (!parsed.add(tagName)) {
                    throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
                }
            }
    #else
            if (!parsed.add(tagName)) {
                throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
            }
    #end
            return tagName;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

                    .filterIsInstance<Element>()
                    .first { it.predicate() }
    
            asElement()
                .firstElement { tagName == "component" && getAttribute("name") == "VcsDirectoryMappings" }
                .firstElement { tagName == "mapping" }
                .setAttribute("vcs", "Git")
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

                    if (!parsed.add(tagName)) {
                        throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
                    }
            }
    #else
            if (!parsed.add(tagName)) {
                throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
            }
    #end
            return tagName;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/flexvolume_test.go

    )
    
    echo {"status": "Not supported"}
    exit 1
    `
    
    func installPluginUnderTest(t *testing.T, vendorName, plugName, tmpDir string, execScriptTempl string, execTemplateData *map[string]interface{}) {
    	vendoredName := plugName
    	if vendorName != "" {
    		vendoredName = fmt.Sprintf("%s~%s", vendorName, plugName)
    	}
    	pluginDir := filepath.Join(tmpDir, vendoredName)
    	err := os.MkdirAll(pluginDir, 0777)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        }
    
        @Override
        public Ref createLightWeightTag(String tagName) throws GitAPIException {
            return git.tag().setName(tagName).call();
        }
    
        public Ref createAnnotatedTag(String tagName, String message) throws GitAPIException {
            return git.tag().setName(tagName).setAnnotated(true).setMessage(message).call();
        }
    
        public Ref getHead() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

            // start of tag marker
            scanner.next(2);
    
            // tag name
            scanner.mark();
            scanner.find(END_TAG_NAME);
            String tagName = scanner.region();
            visitor.onStartJavadocTag(tagName);
            scanner.skip(WHITESPACE_WITH_EOL);
    
            // value
            if (!scanner.lookingAt('}')) {
                scanner.mark();
                scanner.find('}');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy

                target.append("<${element.tagName}")
                for (int i = 0; i < element.attributes.length; i++) {
                    Attr attr = element.attributes.item(i)
                    target.append(" $attr.name=\"$attr.value\"")
                }
    
                element.childNodes.findAll { it instanceof Text }.each {
                    assert it.textContent != null : "Found null text element in <$element.tagName>"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing.go

    	var tags []*tracing.CustomTag
    	for tagName, tagInfo := range providerTags {
    		if tagInfo == nil {
    			log.Warnf("while building custom tags from provider, encountered nil custom tag: %s, skipping", tagName)
    			continue
    		}
    		switch tag := tagInfo.Type.(type) {
    		case *telemetrypb.Tracing_CustomTag_Environment:
    			env := &tracing.CustomTag{
    				Tag: tagName,
    				Type: &tracing.CustomTag_Environment_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. internal/s3select/csv/args.go

    		if se, ok := t.(xml.StartElement); ok {
    			tagName := se.Name.Local
    			switch tagName {
    			case "AllowQuotedRecordDelimiter":
    				var b bool
    				if err = d.DecodeElement(&b, &se); err != nil {
    					return err
    				}
    				args.AllowQuotedRecordDelimiter = b
    			default:
    				var s string
    				if err = d.DecodeElement(&s, &se); err != nil {
    					return err
    				}
    				switch tagName {
    				case "FileHeaderInfo":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top