Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for capturing (0.15 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisLibrarySourceModuleCompilerFacilityTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Capturing {
          @Test
          public void testAllFilesPresentInCapturing() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing"), Pattern.compile("^(.+)\\.(kt)$"), null, true);
          }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisSourceModuleCompilerFacilityTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Capturing {
          @Test
          public void testAllFilesPresentInCapturing() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing"), Pattern.compile("^(.+)\\.(kt)$"), null, true);
          }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

         * unique test sources (e.g. JUnit4 vs JUnit5).
         */
        interface TestSourceGenerator {
            void writeAllSources(TestSourceFixture fixture)
        }
    
        /**
         * Fixture for capturing test source requirements.  This will be provided to a {@link TestSourceGenerator} to generate the test sources.
         */
        class TestSourceFixture {
            List<TestClass> testClasses = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. src/regexp/syntax/regexp.go

    	Rune     []rune     // matched runes, for OpLiteral, OpCharClass
    	Rune0    [2]rune    // storage for short Rune
    	Min, Max int        // min, max for OpRepeat
    	Cap      int        // capturing index, for OpCapture
    	Name     string     // capturing name, for OpCapture
    }
    
    //go:generate stringer -type Op -trimprefix Op
    
    // An Op is a single regular expression operator.
    type Op uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. operator/pkg/validate/common.go

    	// regexp has capturing groups for the domain and name part omitting
    	// the separating forward slash from either.
    	NameRegexp = expression(
    		optional(DomainRegexp, literal(`/`)),
    		nameComponentRegexp,
    		optional(repeated(literal(`/`), nameComponentRegexp)))
    
    	// ReferenceRegexp is the full supported format of a reference. The regexp
    	// is anchored and has capturing groups for name, tag, and digest
    	// components.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

            where:
            kind                     | expression
            "instance capturing"     | "setInstanceCapturingLambda()"
            "non-instance capturing" | "setNonInstanceCapturingLambda()"
        }
    
        def "capturing prohibited types in serializable lambdas is reported as a problem"() {
            given:
            file("buildSrc/src/main/java/my/LambdaTask.java").tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                this.loggingSystem = loggingSystem;
                this.level = level;
            }
    
            /**
             * Start this logging system: take a snapshot of the current state and start capturing events if enabled.
             */
            public void start() {
                originalState = loggingSystem.snapshot();
                if (level != null) {
                    loggingSystem.setLevel(level);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"AddonComponents.istiocoredns.Enabled", "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)", false},
    		{"Values.istiocoredns.enabled", "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)", false},
    		// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                        val coroutine = sequence {
                            // Unsigned integer types
                            yield(42UL)
                        }
    
                        // Capturing when
                        when (val value = coroutine.first()) {
                            42UL -> print("42!")
                            else -> throw IllegalStateException()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/kube-addons.sh

    # $3 namespace for the object
    function reconcile_resource_from_string() {
      local -r config_string=$1;
      local -r config_name=$2;
      local -r namespace=$3;
    
      # kubectl_output must be declared ahead of time to allow capturing kubectl's exit code and not local's exit code.
      local kubectl_output;
      # shellcheck disable=SC2086
      # Disabling because "${KUBECTL_OPTS}" needs to allow for expansion here
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top