Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 452 for admitted (0.5 sec)

  1. pkg/apis/certificates/validation/validation.go

    			continue
    		}
    
    		if !cert.IsCA {
    			allErrors = append(allErrors, field.Invalid(path, "<value omitted>", fmt.Sprintf("entry %d does not have the CA bit set", i)))
    			continue
    		}
    
    		if !cert.BasicConstraintsValid {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultTaskPathLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * A problem location that stores a task path if the problem was emitted meanwhile executing a task.
     */
    public class DefaultTaskPathLocation implements TaskPathLocation {
    
        private final String buildTreePath;
    
        public DefaultTaskPathLocation(String buildTreePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            }
    
            if (!included) {
                if (Objects.equals(winnerVersion, node.getArtifact().getVersion())) {
                    details.add("omitted for duplicate");
                } else {
                    details.add("omitted for conflict with " + winnerVersion);
                }
            }
    
            StringBuilder buffer = new StringBuilder();
            if (included) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockReleasedSignal.java

     */
    public interface FileLockReleasedSignal {
    
        /**
         * Triggers this signal to notify the lock requesters that the file
         * lock has been released.
         *
         * <p>Returns once the signal has been emitted but not necessarily
         * received by the lock requesters.
         */
        void trigger();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPathIntegrationTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class AccessorsClassPathIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `warning is emitted if a gradle slash project dash schema dot json file is present`() {
    
            withDefaultSettings()
            withBuildScript("")
    
            withFile(projectSchemaResourcePath)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithAndroidDeprecations.groovy

    import groovy.transform.SelfType
    import org.gradle.util.GradleVersion
    
    @SelfType(BaseDeprecations)
    trait WithAndroidDeprecations {
    
        void expectFilteredFileCollectionDeprecationWarning() {
            // This warning is emitted by the Kotlin Kapt plugin
            runner.expectLegacyDeprecationWarning(
                "The Configuration.fileCollection(Spec) method has been deprecated. " +
                    "This is scheduled to be removed in Gradle 9.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/initorder.go

    		// introduce a node for each lhs variable (here: a, b);
    		// but they all have the same initializer - emit only
    		// one, for the first variable seen
    		if emitted[info] {
    			continue // initializer already emitted, if any
    		}
    		emitted[info] = true
    
    		infoLhs := info.lhs // possibly nil (see declInfo.lhs field comment)
    		if infoLhs == nil {
    			infoLhs = []*Var{v}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/go/types/initorder.go

    		// introduce a node for each lhs variable (here: a, b);
    		// but they all have the same initializer - emit only
    		// one, for the first variable seen
    		if emitted[info] {
    			continue // initializer already emitted, if any
    		}
    		emitted[info] = true
    
    		infoLhs := info.lhs // possibly nil (see declInfo.lhs field comment)
    		if infoLhs == nil {
    			infoLhs = []*Var{v}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/state/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 511 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/state/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 511 bytes
    - Viewed (0)
Back to top