Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,770 for happens (0.45 sec)

  1. .github/ISSUE_TEMPLATE/bug_report.md

    <!--- Provide a general summary of the issue in the Title above -->
    
    ## Expected Behavior
    <!--- If you're describing a bug, tell us what should happen -->
    <!--- If you're suggesting a change/improvement, tell us how it should work -->
    
    ## Current Behavior
    <!--- If describing a bug, tell us what happens instead of the expected behavior -->
    <!--- If suggesting a change/improvement, explain the difference from current behavior -->
    
    ## Possible Solution
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    kers,"marker" publications>> (one for each plugin defined in the `gradlePlugin {}` block), named `<pluginName>PluginMarkerMaven` (for example in the above example it would be `simplePluginPluginMarkerMaven`)
    
    This automatic configuration happens in a link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:afterEvaluate(org.gradle.api.Action)[Project.afterEvaluate()] block (so at the end of the <<build_lifecycle.adoc#sec:build_phases,build configuration phase>>), and only if...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. pkg/controller/deployment/deployment_controller_test.go

    		p1.Name, p2.Name = p1.Name+fmt.Sprintf("-%d", i), p2.Name+fmt.Sprintf("-%d", i)
    		pods = append(pods, p1, p2)
    		objects = append(objects, p1, p2)
    	}
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rs1, rs2)
    	f.podLister = append(f.podLister, pods...)
    	f.objects = append(f.objects, d, rs1, rs2)
    	f.objects = append(f.objects, objects...)
    
    	// Start the fixture.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

            instant.snapshottingStarted < instant.invalidated
            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
        }
    
        def "stores snapshot when invalidation happens before"() {
            def location = '/my/location/new'
    
            when:
            vfs.invalidate(['/my/location/new/something'])
            vfs.store(location, { ->
                return directory(location, [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

        }
    
        void "nothing happens if project was already configured"() {
            given:
            state.configured()
    
            when:
            evaluate()
    
            then:
            state.executed
            0 * delegate._
    
            and:
            operations.empty
        }
    
        void "nothing happens if project is being configured now"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                // See above for why this check happens
                if (targetMetadata.hasProperty(null, propertyName) == null) {
                    throw MissingPropertyException(propertyName)
                }
                scriptReferenced()
            }
    
            override fun invokeMethod(name: String, args: Any): Any {
                // See above for why this check happens
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/SourceFileClassNameConverter.java

        /**
         * Returns the source files that this class was compiled from.
         * Can be multiple files when the same class declaration was made in several files.
         * This happens e.g. during "copy class" refactorings in IntelliJ.
         * Empty if the source for this class could not be determined.
         */
        Set<String> getRelativeSourcePaths(String className);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. manifests/charts/base/files/profile-demo.yaml

          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/files/profile-demo.yaml

          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptClassPathIntegrationTest.groovy

    }
    
    FileCollection.metaClass.environmentMarkers = { String... markerStrings ->
       bar()
       // to make this test pass, a workaround is to uncomment this line
       // see the ticket for explanation why this happens
       //delegate.class.metaClass = null
    }
    
    configurations {
       compile
    }
    
    dependencies {
       compile files('foo.jar') { environmentMarkers('sss') }
    }
    
    task foo {
       doLast {
          bar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:48:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top