Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for gretty (0.1 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GrettySmokeTest.groovy

    @UnsupportedWithConfigurationCache(
        because = "The Gretty plugin does not support configuration caching"
    )
    class GrettySmokeTest extends AbstractPluginValidatingSmokeTest {
    
        def 'run Jetty with Gretty #grettyConfig.version'() {
            given:
            def grettyVersion = VersionNumber.parse(grettyConfig.version)
            useSample('gretty-example')
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-delegate-closure-of/kotlin/build.gradle.kts

    import org.akhikhl.gretty.FarmExtension
    
    plugins {
        id("org.gretty") version "4.0.3"
    }
    
    // tag::delegateClosureOf[]
    farms {
        farm("OldCoreWar", delegateClosureOf<FarmExtension> {
            // Config for the war here
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 257 bytes
    - Viewed (0)
  3. pkg/security/retry.go

    var CARetryOptions = []retry.CallOption{
    	retry.WithMax(5),
    	retry.WithBackoff(wrapBackoffWithMetrics(retry.BackoffExponentialWithJitter(100*time.Millisecond, 0.1))),
    	retry.WithCodes(codes.Canceled, codes.DeadlineExceeded, codes.ResourceExhausted, codes.Aborted, codes.Internal, codes.Unavailable),
    }
    
    // CARetryInterceptor is a grpc UnaryInterceptor that adds retry options, as a convenience wrapper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pkg/test/util/retry/retry.go

    //  limitations under the License.
    
    package retry
    
    import (
    	"errors"
    	"fmt"
    	"time"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    )
    
    var scope = log.RegisterScope("retry", "logs for retries")
    
    const (
    	// DefaultTimeout the default timeout for the entire retry operation
    	DefaultTimeout = time.Second * 30
    
    	// DefaultDelay the default delay between successive retry attempts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/tests/greet.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  6. src/runtime/retry.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package runtime
    
    // retryOnEAGAIN retries a function until it does not return EAGAIN.
    // It will use an increasing delay between calls, and retry up to 20 times.
    // The function argument is expected to return an errno value,
    // and retryOnEAGAIN will return any errno value other than EAGAIN.
    // If all retries return EAGAIN, then retryOnEAGAIN will return EAGAIN.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:44:45 UTC 2022
    - 760 bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/retry/retry.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package retry
    
    import (
    	"net/http"
    	"strconv"
    	"strings"
    
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	previouspriorities "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/priority/previous_priorities/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. bin/retry.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # retry.sh retries a command until it succeeds. It accepts a regex pattern to match failures on to
    # determine if a retry should be attempted.
    # Example: retry.sh "connection timed out" ./my-flaky-script.sh some args
    # This will run "my-flaky-script.sh", retrying any failed runs that output "connection timed out" up
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 11 16:08:08 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate_test.go

    			serializer:  fakeCodec,
    		},
    		{
    			accept:      "application/json; pretty=1",
    			contentType: "application/json",
    			ns:          &fakeNegotiater{serializer: fakeCodec, types: []string{"application/json"}},
    			serializer:  fakeCodec,
    			params:      map[string]string{"pretty": "1"},
    		},
    		{
    			accept:      "unrecognized/stuff,application/json; pretty=1",
    			contentType: "application/json",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. pkg/controller/bootstrap/common_test.go

    	for i, a := range actual {
    		if len(expected) < i+1 {
    			t.Errorf("%d unexpected actions: %s", len(actual)-len(expected), dump.Pretty(actual[i:]))
    			break
    		}
    
    		e := expected[i]
    		if !helper.Semantic.DeepEqual(e, a) {
    			t.Errorf("Expected\n\t%s\ngot\n\t%s", dump.Pretty(e), dump.Pretty(a))
    			continue
    		}
    	}
    
    	if len(expected) > len(actual) {
    		t.Errorf("%d additional expected actions", len(expected)-len(actual))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top