Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for capsule (0.23 sec)

  1. tests/integration/iop-ambient-test-defaults.yaml

    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
            # and DNS proxying must be enabled in ztunnel
            dnsCapture: true
        ztunnel:
          meshConfig:
            defaultConfig:
              proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

        }
    
        def configuredTaskRunsCorrectly() {
            run 'test'
            outputContains 'The parameter is `42`'
            true
        }
    
        def 'isolated beforeProject action given as Kotlin lambda can capture managed value'() {
            given:
            withSettingsPluginInBuildLogic()
    
            createDir('build-logic') {
                file('settings.gradle.kts') << ''
                file('build.gradle.kts') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

    
    /**
     * Returns every property backing field for which a corresponding convention mapping flag field also exists.
     *
     * The convention mapping flag field is a Boolean field injected by [AsmBackedClassGenerator] in order to capture
     * whether a convention mapped property has been explicitly set or not.
     */
    private
    fun conventionAwareFieldsOf(beanType: Class<*>): Sequence<Pair<Field, Field>> =
        ClassInspector.inspect(beanType).let { details ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

                layout.buildDirectory.set(
                    layout.projectDirectory.dir(
                        service.map {
                            // intentionally capture the `project` object to force a cc failure
                            // in case this gets serialized
                            it.buildDirFor(project)
                        }
                    )
                )
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Prepares to load or create a model. Does nothing if the cached model is available or else prepares to capture
         * configuration fingerprints and validation problems and then runs the given function.
         */
        fun maybePrepareModel(action: () -> Unit)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/sync/once.go

    // Once is required for each function to execute.
    //
    // Do is intended for initialization that must be run exactly once. Since f
    // is niladic, it may be necessary to use a function literal to capture the
    // arguments to a function to be invoked by Do:
    //
    //	config.once.Do(func() { config.init(filename) })
    //
    // Because no call to Do returns until the one call to f returns, if f causes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

        )
    
        @BeforeEach
        fun setUp() {
            val stepsCapturer = slot<BuildSteps.() -> Unit>()
            every { buildType.steps } returns steps
            every {
                buildType.steps(capture(stepsCapturer))
            } answers {
                stepsCapturer.captured(steps)
                mockk()
            }
        }
    
        @Test
        fun `can apply defaults to configurations`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

            Path sandboxOutputTxt = sandboxOutputDirectory.resolve("output.txt");
            Files.write(sandboxOutputTxt, Collections.singleton("contents"));
    
            // Capture the snapshot of the produced output
            FileSystemLocationSnapshot producedOutputSnapshot = fileSystemAccess.read(sandboxOutputDirectory.toAbsolutePath().toString());
    
            // Store the entity in the cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package capture
    
    import (
    	"fmt"
    	"net"
    	"net/netip"
    	"os"
    	"strings"
    
    	"github.com/vishvananda/netlink"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/tools/istio-iptables/pkg/builder"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top