Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 203 for tag_name (0.52 sec)

  1. istioctl/pkg/tag/tag.go

    	webhooks, err := GetWebhooksWithTag(ctx, kubeClient, tagName)
    	if err != nil {
    		return fmt.Errorf("failed to retrieve tag with name %s: %v", tagName, err)
    	}
    	if len(webhooks) == 0 {
    		return fmt.Errorf("cannot remove tag %q: cannot find MutatingWebhookConfiguration for tag", tagName)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

                 {"serving_default"},
             const std::vector<std::string>& tag_names = {"serve"},
             absl::string_view input_arg_shapes_str = "") -> py::bytes {
            auto module_bytecode =
                PywrapSavedModelToStablehlo(input_path, exported_model_signatures,
                                            tag_names, input_arg_shapes_str);
            if (!module_bytecode.ok()) {
              PyErr_SetString(PyExc_ValueError,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

            javaCrash = false
        }
    })
    
    private fun determineFlakyTestStrategy(stage: Stage): String {
        val stageName = StageName.values().first { it.stageName == stage.stageName.stageName }
        // See gradlebuild.basics.FlakyTestStrategy
        return if (stageName < StageName.READY_FOR_RELEASE) "exclude" else "include"
    }
    
    fun getTestTaskName(testCoverage: TestCoverage, subprojects: List<String>): String {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

        val testsWithOs = model.stages.filter {
            it.stageName in listOf(
                StageName.QUICK_FEEDBACK_LINUX_ONLY,
                StageName.QUICK_FEEDBACK,
                StageName.PULL_REQUEST_FEEDBACK,
                StageName.READY_FOR_NIGHTLY,
            )
        }.flatMap { it.functionalTests }.filter { it.os == os }
    
        if (os == Os.LINUX) {
            steps {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. src/mdo/writer.vm

      #end
                serializer.endTag(NAMESPACE, tagName);
            }
        }
    
     #end
    #end
        @FunctionalInterface
        private interface ElementWriter<T> {
            public void write(T t) throws IOException;
        }
    
        private <T> void writeList(String tagName, List<T> list, XmlSerializer serializer, ElementWriter<T> writer) throws IOException {
            writeList(tagName, false, list, serializer, writer);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.h

    //  context: The MLIR context to use for parsing or creating the MLIR module.
    //  exported_model_signatures: List of exported model signatures (strings) to
    //    convert.
    //  tag_names: List of tag names (strings) used for loading SavedModel.
    //    Ignored for MLIR input.
    //  input_arg_shapes_str:  A string representation of input argument shapes for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top