Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,688 for durian (0.32 sec)

  1. gradle/verification-metadata.xml

                <trusting group="org.codenarc"/>
                <trusting group="org.gmetrics"/>
             </trusted-key>
             <trusted-key id="8756C4F765C9AC3CB6B85D62379CE192D401AB61">
                <trusting group="com.diffplug.durian"/>
                <trusting group="com.github.javaparser"/>
                <trusting group="info.picocli"/>
                <trusting group="io.github.http-builder-ng"/>
                <trusting group="org.testcontainers"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// watch request(s) to drain.
    	// Once this grace period elapses, the apiserver will no longer
    	// wait for any active watch request(s) in flight to drain, it will
    	// proceed to the next step in the graceful server shutdown process.
    	// If set to a positive value, the apiserver will keep track of the
    	// number of active watch request(s) in flight and during shutdown
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. build/pause/CHANGELOG.md

    # 3.8
    
    * Updating base image for Windows container images from nanoserver to `mcr.microsoft.com/oss/kubernetes/windows-pause-image-base` which gets built on a Windows machine.
    This addresses [Cannot modify registry keys during Windows pause image build process #109161](https://github.com/kubernetes/kubernetes/issues/109161)
    
    # 3.7
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// watch request(s) to drain.
    	// Once this grace period elapses, the apiserver will no longer
    	// wait for any active watch request(s) in flight to drain, it will
    	// proceed to the next step in the graceful server shutdown process.
    	// If set to a positive value, the apiserver will keep track of the
    	// number of active watch request(s) in flight and during shutdown
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. tools/packaging/common/sidecar.env

    # has no effect on outbound traffic: iptables REDIRECT is always used for
    # outbound connections.
    # If "REDIRECT", use iptables REDIRECT to NAT and redirect to Envoy.
    # The "REDIRECT" mode loses source addresses during redirection.
    # If "TPROXY", use iptables TPROXY to redirect to Envoy.
    # The "TPROXY" mode preserves both the source and destination IP
    # addresses and ports, so that they can be used for advanced filtering
    # and manipulation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/openapi-webhooks.md

    Das wird normalerweise als **Webhook** bezeichnet.
    
    ## Webhooks-Schritte
    
    Der Prozess besteht normalerweise darin, dass **Sie in Ihrem Code definieren**, welche Nachricht Sie senden möchten, den **Body des Requests**.
    
    Sie definieren auch auf irgendeine Weise, zu welchen **Momenten** Ihre Anwendung diese Requests oder Events sendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:06:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    > Configure project :app
    BUILD SCRIPT: This is executed during the configuration phase       //<2>
    REGISTER TASK1: This is executed during the configuration phase     //<2>
    NAMED TASK1: This is executed during the configuration phase        //<2>
    
    > Task :app:task1
    NAMED TASK1 - doFirst: This is executed during the execution phase  //<3>
    NAMED TASK1 - doLast: This is executed during the execution phase   //<3>
    
    BUILD SUCCESSFUL in 25s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildlifecycle/basic/kotlin/build.gradle.kts

    println("This is executed during the configuration phase.")
    
    tasks.register("configured") {
        println("This is also executed during the configuration phase, because :configured is used in the build.")
    }
    
    tasks.register("test") {
        doLast {
            println("This is executed during the execution phase.")
        }
    }
    
    tasks.register("testBoth") {
        doFirst {
            println("This is executed first during the execution phase.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 638 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildlifecycle/basic/tests/buildlifecycle.out

    This is executed during the initialization phase.
    
    > Configure project :
    This is executed during the configuration phase.
    This is executed during the configuration phase as well, because :testBoth is used in the build.
    
    > Task :test
    This is executed during the execution phase.
    
    > Task :testBoth
    This is executed first during the execution phase.
    This is executed last during the execution phase.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 452 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildlifecycle/basic/groovy/build.gradle

    println 'This is executed during the configuration phase.'
    
    tasks.register('configured') {
        println 'This is also executed during the configuration phase, because :configured is used in the build.'
    }
    
    tasks.register('test') {
        doLast {
            println 'This is executed during the execution phase.'
        }
    }
    
    tasks.register('testBoth') {
    	doFirst {
    	  println 'This is executed first during the execution phase.'
    	}
    	doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
Back to top