Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 387 for capsule (0.09 sec)

  1. pkg/test/echo/docker/Dockerfile.app

    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    COPY certs/cert.crt /cert.crt
    COPY certs/cert.key /cert.key
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application
    USER 1338
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 490 bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/root.go

    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/kotlin/app/build.gradle.kts

    plugins {
        application
    }
    // tag::snippet[]
    // Extension class to capture user input
    class MyExtension {
        @Input
        var inputParameter: String? = null
    }
    
    // Custom task that uses the input from the extension
    class MyCustomTask : org.gradle.api.DefaultTask() {
        @Input
        var inputParameter: String? = null
    
        @TaskAction
        fun executeTask() {
            println("Input parameter: $inputParameter")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 923 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/.gitattributes

    # line endings. This produces predictable results in different environments.
    #
    # Windows users contributing to Go will need to use a modern version
    # of git and editors capable of LF line endings.
    #
    # Windows .bat files are known to have multiple bugs when run with LF
    # endings. So if they are checked in with CRLF endings, there should
    # be a test like the one in test/winbatch.go in the go repository.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 545 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/groovy/app/build.gradle

    plugins {
        id 'application'
    }
    // tag::snippet[]
    // Extension class to capture user input
    class MyExtension {
        @Input
        String inputParameter = null
    }
    
    // Custom task that uses the input from the extension
    class MyCustomTask extends DefaultTask {
        @Input
        String inputParameter = null
    
        @TaskAction
        def executeTask() {
            println("Input parameter: $inputParameter")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 881 bytes
    - Viewed (0)
  6. tensorflow/c/tf_status.h

    // callable for each one. `key` and `value` is only usable during the callback.
    // `capture` will be passed to the callback without modification.
    #define TF_PayloadVisitor TSL_PayloadVisitor
    TF_CAPI_EXPORT extern void TF_ForEachPayload(const TF_Status* s,
                                                 TF_PayloadVisitor visitor,
                                                 void* capture);
    
    // Convert from an I/O error code (e.g., errno) to a TF_Status value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * @return this
         */
        CopyProcessingSpec rename(String sourceRegEx, String replaceWith);
    
        /**
         * Renames files based on a regular expression. See {@link #rename(String, String)}.
         *
         * @param sourceRegEx Source regular expression
         * @param replaceWith Replacement string (use $ syntax for capture groups)
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. 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)
  9. tools/istio-iptables/pkg/constants/constants.go

    	OutboundPorts             = "istio-outbound-ports"
    	LocalOutboundPortsExclude = "istio-local-outbound-ports-exclude"
    	EnvoyPort                 = "envoy-port"
    	InboundCapturePort        = "inbound-capture-port"
    	InboundTunnelPort         = "inbound-tunnel-port"
    	ProxyUID                  = "proxy-uid"
    	ProxyGID                  = "proxy-gid"
    	KubeVirtInterfaces        = "kube-virt-interfaces"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                val t6: Task = tasks.create("bazar")
                val t7: Copy = tasks.create("cathedral", Copy::class)
                val t8: Copy = tasks.create<Copy>("cabin")
    
                val t9: Task = tasks.create("castle") {
                    description += "!"
                }
                val t10: Copy = tasks.create("valley", Copy::class) {
                    description += "!"
                    destinationDir = file("out")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top