Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 148 for inflated (0.18 sec)

  1. pkg/config/validation/validation_agent.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package validation
    
    import (
    	telemetry "istio.io/api/telemetry/v1alpha1"
    )
    
    // NOP validation that isolated `go-cel` package for istio-agent binary
    func validateTelemetryFilter(filter *telemetry.AccessLogging_Filter) error {
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 18:02:37 UTC 2022
    - 860 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsJavaIntegrationTest.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 IsolatedProjectsJavaIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "can build library with dependency on another library"() {
            settingsFile << """
                include("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/AbstractIsolatedProjectsToolingApiIntegrationTest.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.ToolingApiBackedGradleExecuter
    import org.gradle.internal.cc.impl.fixtures.ToolingApiSpec
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/ZipEntryCompression.java

     */
    public enum ZipEntryCompression {
        /** Contents are not compressed */
        STORED,
    
        /** Contents are compressed using the 'deflate' algorithm */
        DEFLATED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 890 bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/ClassLoaderWorkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    import org.gradle.api.file.ConfigurableFileCollection;
    
    /**
     * A worker spec providing the requirements of an isolated classpath.
     *
     * @since 5.6
     */
    public interface ClassLoaderWorkerSpec extends WorkerSpec {
        /**
         * Gets the classpath associated with the worker.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/types/uid.go

    package types
    
    // UID is a type that holds unique ID values, including UUIDs.  Because we
    // don't ONLY use UUIDs, this is an alias to string.  Being a type captures
    // intent and helps make sure that UIDs and names do not get conflated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 825 bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForIsolatedProjectsRule.groovy

            if (GradleContextualExecuter.isNotIsolatedProjects() || annotation == null) {
                return base
            }
    
            return new ExpectingFailureRuleStatement(base, "Isolated Projects")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

        public static final String UNSUPPORTED_PLUGIN_DUE_TO_ISOLATED_PROJECTS_MESSAGE = "Gradle Enterprise plugin has been disabled as it is incompatible with the isolated projects feature";
    
        // Gradle versions 9+ are not compatible Develocity plugin < 3.13.1
        public static final VersionNumber MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9 = VersionNumber.parse("3.13.1");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleControllerTest.groovy

            and:
            1 * finishExecutor.finishBuildTree([]) >> reportableFailure
        }
    
        def "runs action after running tasks when task execution is requested and isolated projects disabled"() {
            def action = Mock(BuildTreeModelAction)
            buildModelParameters.isIsolatedProjects() >> false
            startParameter.getTaskRequests() >> [new DefaultTaskExecutionRequest(["tasks"])]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 10:38:23 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchModelsMultipleTimesForEachProject.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.internal.cc.impl.fixtures.SomeToolingModel;
    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.BuildController;
    
    import java.util.ArrayList;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top