Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 387 for capsule (0.19 sec)

  1. releasenotes/notes/48253.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 48212
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 207 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/XcodeProject.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode;
    
    /**
     * A xcode project, created from C++ or Swift capable project.
     *
     * @since 4.2
     * @see <a href="https://developer.apple.com/library/content/featuredarticles/XcodeConcepts/Concept-Projects.html">XCode Project Concept</a>
     */
    public interface XcodeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 911 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/CapturingUserInputCrossVersionSpec.groovy

        }
    
        def "can capture user input if standard input was provided"() {
            when:
            withConnection { ProjectConnection connection ->
                runBuildWithStandardInput(connection)
            }
    
            then:
            output.contains(PROMPT)
            output.contains(answerOutput(true))
        }
    
        def "cannot capture user input if standard input was not provided"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_client_test.go

    	capabilityMethodToTest func(*csiDriverClient) (bool, error),
    	nodeClientGenerator func(bool) *fake.NodeClient) {
    
    	testCases := []struct {
    		name    string
    		capable bool
    	}{
    		{name: "positive", capable: true},
    		{name: "negative", capable: false},
    	}
    
    	for _, tc := range testCases {
    		t.Logf("Running test case: %s", tc.name)
    		fakeCloser := fake.NewCloser(t)
    		client := &csiDriverClient{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pkg/security/apparmor/validate.go

    				retErr = fmt.Errorf("invalid empty AppArmor profile name: %q", profile)
    				return false
    			}
    		}
    		return true
    	})
    
    	return retErr
    }
    
    // ValidateHost verifies that the host and runtime is capable of enforcing AppArmor profiles.
    // Note, this is intentionally only check the host at kubelet startup and never re-evaluates the host
    // as the expectation is that the kubelet restart will be needed to enable or disable AppArmor support.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/xds/nds.go

    // send NDS requests to istiod and istiod responds with a list of services and their
    // associated IPs (including service entries).
    // The agent then updates its internal DNS based on this data. If DNS capture is enabled
    // in the pod the agent will capture all DNS requests and attempt to resolve locally before
    // forwarding to upstream dns servers.
    type NdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
        update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy; fi
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. operator/pkg/validate/common.go

    	// is anchored and has capturing groups for name, tag, and digest
    	// components.
    	ReferenceRegexp = anchored(capture(NameRegexp),
    		optional(literal(":"), capture(TagRegexp)),
    		optional(literal("@"), capture(DigestRegexp)))
    
    	// ObjectNameRegexp is a legal name for a k8s object.
    	ObjectNameRegexp = match(`[a-z0-9.-]{1,254}`)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/test/echo/docker/Dockerfile.app_sidecar_base_centos

        conntrack \
        net-tools \
        ca-certificates \
        && update-ca-trust \
        && yum clean all \
        && rm -rf /var/cache/yum
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 568 bytes
    - Viewed (0)
Back to top