Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 148 for inflated (0.25 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityBuildLifecycleService.java

        /**
         * Adds an action to be called immediately before a project is evaluated.
         * <p>
         * The action will be applied to all projects configured in the current build. Due to `Isolated Projects`, a particular build might only configure a subset of all projects.
         *
         * @param action The action to execute.
         */
        void beforeProject(Action<? super Project> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tests/testdata/config/se-example-gw.yaml

    #The following example demonstrates the use of a dedicated egress gateway
    #through which all external service traffic is forwarded.
    
    
    # Sidecar - no imports defined, isolated namespace.
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: default
      namespace: exampleegressgw
    spec:
      egress:
      - hosts:
          - exampleegressgw/*
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

        /**
         * Get a lock for access to the specified project's state.
         */
        ResourceLock getProjectLock(Path buildIdentityPath, Path projectIdentityPath);
    
        /**
         * Get a lock for non-isolated tasks for the specified project.
         */
        ResourceLock getTaskExecutionLock(Path buildIdentityPath, Path projectIdentityPath);
    
        /**
         * Returns any project state locks currently held by this thread.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/types/namespacedname.go

    // NamespacedName comprises a resource name, with a mandatory namespace,
    // rendered as "<namespace>/<name>".  Being a type captures intent and
    // helps make sure that UIDs, namespaced names and non-namespaced names
    // do not get conflated in code.  For most use cases, namespace and name
    // will already have been format validated at the API entry point, so we
    // don't do that here.  Where that's not the case (e.g. in testing),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 10:47:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchIdeaProjectForTarget.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated;
    
    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.BuildController;
    import org.gradle.tooling.model.gradle.BasicGradleProject;
    import org.gradle.tooling.model.gradle.GradleBuild;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathEntryVisitor.java

        void visit(Entry entry) throws IOException;
    
        interface Entry {
            enum CompressionMethod {
                /**
                 * The entry is compressed with DEFLATE algorithm.
                 */
                DEFLATED,
                /**
                 * The entry is not compressed and stored as is.
                 */
                STORED,
                /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 30 22:03:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

         * and these builders may access project state as well as the task state.
         * Doing load-after-store would have discarded the project state and isolated the task state,
         * providing the builders with an incomplete view of the build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    import org.gradle.internal.cc.impl.fixtures.SomeToolingModel
    
    class IsolatedProjectsToolingApiParallelModelQueryIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

        @Requires(
            value = IntegTestPreconditions.IsConfigCached,
            reason = "Isolation provided by Configuration Cache serialization"
        )
        def 'flow actions are isolated from each other'() {
            given: 'flow actions that share a bean'
            buildFile '''
                import org.gradle.api.flow.*
                import org.gradle.api.services.*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsTaskPathDependencyIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsTaskPathDependencyIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
    
        def "#type task path dependency is not an IP violation"() {
            given:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top