Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for capsule (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/proxy/nftables/proxier.go

    				// the cluster will be dropped, but traffic from inside
    				// the cluster may still be accepted.
    				externalTrafficFilterVerdict = "drop"
    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		// Capture the clusterIP.
    		tx.Add(&knftables.Element{
    			Set: clusterIPsSet,
    			Key: []string{svcInfo.ClusterIP().String()},
    		})
    		if hasInternalEndpoints {
    			tx.Add(&knftables.Element{
    				Map: serviceIPsMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    	StrictMatch bool
    	// If set, this will mark a test as skipped. Note the result is still checked first - we skip only
    	// if we pass the test. This is to ensure that if the behavior changes, we still capture it; the skip
    	// just ensures we notice a test is wrong
    	Skip string
    	t    test.Failer
    }
    
    func (r Result) Matches(t *testing.T, want Result) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                }
            }
            return cpJar;
        }
    
        private BuildResult doRun(OutputStream outputStream, OutputStream errorStream, BuildListenerImpl listener) {
            // Capture the current state of things that we will change during execution
            InputStream originalStdIn = System.in;
            Properties originalSysProperties = new Properties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            buildFile("""
                def oldValue = System.setProperty("java.awt.headless", "true")
                println("previous value = \$oldValue")
    
                // Attempt to capture the modified property value.
                println("configuration time value=\${System.getProperty("java.awt.headless")}")
    
                tasks.register("printProperty") {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top