Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,562 for behaviors (0.16 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingJavaCompiler.java

            logSourceFiles(spec);
            logCompilerArguments(spec);
            return delegateAndHandleErrors(spec);
        }
    
        private void resolveAndFilterSourceFiles(JavaCompileSpec spec) {
            // this mimics the behavior of the Ant javac task (and therefore AntJavaCompiler),
            // which silently excludes files not ending in .java
            Iterable<File> javaOnly = Iterables.filter(spec.getSourceFiles(), NormalizingJavaCompiler::hasJavaExtension);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            "1.0.0" | "1.0"
            "1.0.0" | "1"
        }
    
        def "incorrectly compares Maven snapshot-like versions (current behaviour not necessarily desired behaviour"() {
            expect:
            compare(smaller, larger) < 0
            compare(larger, smaller) > 0
            compare(smaller, smaller) == 0
            compare(larger, larger) == 0
    
            where:
            smaller                   | larger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - `force_delete_pods_total` and `force_delete_pod_errors_total` metrics count all pod deletion behaviors. ([#118480](https://github.com/kubernetes/kubernetes/pull/118480), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. pkg/apis/autoscaling/validation/validation_test.go

    				PeriodSeconds: 8,
    			}},
    		},
    	}}
    	for _, behavior := range successCases {
    		hpa := prepareHPAWithBehavior(behavior)
    		if errs := ValidateHorizontalPodAutoscaler(&hpa); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    	errorCases := []struct {
    		behavior autoscaling.HorizontalPodAutoscalerBehavior
    		msg      string
    	}{{
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginIntegrationTest.groovy

                    withSourcesJar()
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	if err != nil {
    		t.Fatalf("Head: %v", err)
    	}
    	if res.StatusCode != 200 {
    		t.Errorf("Head status=%d; want=200", res.StatusCode)
    	}
    }
    
    // A transport100Continue test exercises Transport behaviors when sending a
    // request with an Expect: 100-continue header.
    type transport100ContinueTest struct {
    	t *testing.T
    
    	reqdone chan struct{}
    	resp    *Response
    	respErr error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. doc/godebug.md

    [runtime/metrics](/pkg/runtime/metrics/) counter
    named `/godebug/non-default-behavior/<name>:events`
    that counts the number of times a particular program's
    behavior has changed based on a non-default value
    for that setting.
    For example, when `GODEBUG=http2client=0` is set,
    `/godebug/non-default-behavior/http2client:events`
    counts the number of HTTP transports that the program
    has configured without HTTP/2 support.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslContainerIntegrationTest.kt

                tasks {
                    "help"()
                }
            """)
    
            executer.expectDocumentedDeprecationWarning(
                "Task 'help' found by String.invoke() notation. This behavior has been deprecated. " +
                    "This behavior is scheduled to be removed in Gradle 9.0. " +
                    "The \"name\"() notation can cause confusion with methods provided by Kotlin or the JDK. Use named(String) instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. releasenotes/notes/47318.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    docs:
      - '[usage] https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior'
    
    releaseNotes:
    - |
      **Added** configurable scaling behavior for Gateway HPA in helm chart
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 08 02:59:41 UTC 2023
    - 297 bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/crypto/tls/67065.md

    Go 1.23 changed the behavior of [X509KeyPair] and [LoadX509KeyPair]
    to populate the [Certificate.Leaf] field of the returned [Certificate].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 226 bytes
    - Viewed (0)
Back to top