Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,268 for because1 (0.31 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            outputContains("Task ':myTask' is not up-to-date because:")
            outputContains("Task is untracked because: For testing")
    
            when:
            run("myTask", "--info")
            then:
            executedAndNotSkipped(":myTask")
            outputContains("Task ':myTask' is not up-to-date because:")
            outputContains("Task is untracked because: For testing")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

                .should(not(callMethod(File.class, "createTempFile", String.class, String.class)))
                .because(RATIONALE);
    
        @ArchTest
        public static final ArchRule forbid_calls_to_guava_Files_createTempDir =
            classes()
                .should(not(callMethod(com.google.common.io.Files.class, "createTempDir")))
                .because(RATIONALE);
    
        @ArchTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix.yaml

    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: istio-system
    spec:
      gateways:
        - istio-system/testing-gateway
      hosts:
        - testing-01.com # Expected: no validation error because this host exists
      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = ":buildDashboard")
        void 'build dashboard for a project with no other reports lists just the dashboard'() {
            when:
            run('buildDashboard')
    
            then:
            reports.size() == 1
            hasReport(':buildDashboard', 'html')
            unavailableReports.empty
        }
    
        @ToBeFixedForConfigurationCache(because = ":buildDashboard")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    metadata:
      name: my-service1
      namespace: kube-system  # Skipped because it's in a kube system namespace
    spec:
      selector:
        app: my-service1
      ports:
        - protocol: TCP
          port: 8080
          targetPort: 8080
        - protocol: TCP
          port: 8081
          targetPort: 8081
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service2 # Skipped because it has an istio: label
      namespace: istio-system
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. src/go/doc/testdata/issue22856.0.golden

    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  7. src/go/doc/testdata/issue22856.2.golden

    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            assert output.contains("$projectPath cached:"): "no cache flag for project"
            output.contains("$projectPath cached: false")
        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "classloader is cached"() {
            given:
            addIsCachedCheck()
    
            when:
            run()
            run()
    
            then:
            isCached()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/v1/conversion.go

    )
    
    // Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations is an autogenerated conversion function.
    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations(in *admissionregistration.RuleWithOperations, out *v1.RuleWithOperations, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/build.gradle.kts

        integTestNormalizedDistribution(project(":distributions-full")) {
            because("Used by ToolingApiRemoteIntegrationTest")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
        integTestLocalRepository(project(path)) {
            because("ToolingApiResolveIntegrationTest and ToolingApiClasspathIntegrationTest use the Tooling API Jar")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top