Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for excluded (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileSystemDefaultExcludesTest.groovy

                scriptLanguage
            )
            spec.setup(this)
    
            def excludedByBuildScriptFileName = "excluded-by-build-script.txt"
            def excludedByBuildScriptFile = file("input/${excludedByBuildScriptFileName}")
            def excludedByBuildScriptFileCopy = file("build/output/${excludedByBuildScriptFileName}")
            excludedByBuildScriptFile.text = "input"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/admission/config.go

    	webhookPluginInitializer := webhookinit.NewPluginInitializer(webhookAuthResolverWrapper, serviceResolver)
    
    	kubePluginInitializer := NewPluginInitializer(
    		quotainstall.NewQuotaConfigurationForAdmission(),
    		exclusion.Excluded(),
    	)
    
    	return []admission.PluginInitializer{webhookPluginInitializer, kubePluginInitializer}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/constants/constants.go

    	LocalExcludePorts         = "istio-local-exclude-ports"
    	ExcludeInterfaces         = "istio-exclude-interfaces"
    	ServiceCidr               = "istio-service-cidr"
    	ServiceExcludeCidr        = "istio-service-exclude-cidr"
    	OutboundPorts             = "istio-outbound-ports"
    	LocalOutboundPortsExclude = "istio-local-outbound-ports-exclude"
    	EnvoyPort                 = "envoy-port"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/syscall/dirent.go

    			return origlen, count, names
    		}
    		rec := buf[:reclen]
    		buf = buf[reclen:]
    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// See src/os/dir_unix.go for the reason why this condition is
    		// excluded on wasip1.
    		if ino == 0 && runtime.GOOS != "wasip1" { // File absent in directory.
    			continue
    		}
    		const namoff = uint64(unsafe.Offsetof(Dirent{}.Name))
    		namlen, ok := direntNamlen(rec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val jvm: String,
            val startParameterProperties: Map<String, Any?>,
            /**
             * Whether the undeclared inputs accessed while serializing the task graph will be
             * excluded from input tracking. This is a temporary opt-out flag after a change
             * was made in that behavior.
             */
            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * NOTE: Starting with Gradle 5.0 the contract of IdeaModule#sourceDirs and IdeaModule#testSourceDirs changes in
     * a way that the resource directories are excluded.
     */
    @TargetGradleVersion(">=5.0")
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification {
    
        def "provides source dir information"() {
    
            buildFile.text = "apply plugin: 'java'"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

     * * at runtime, resolves property access to the `projects` property on [Project] instances.
     */
    @Suppress("unused") // temporarily excluded from the schema, awaiting rework in a way that does not require the target scope
    internal
    class TypesafeProjectAccessorsComponent(targetScope: ClassLoaderScope) : ObjectConversionComponent, AnalysisSchemaComponent {
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

            .should(not(haveDirectSuperclassOrInterfaceThatAre(gradleInternalApi())))
        );
    
        /**
         * Code written in Kotlin implicitly uses {@link org.jetbrains.annotations.Nullable}, so
         * those packages are excluded from this check.
         */
        @ArchTest
        public static final ArchRule all_methods_use_proper_Nullable = methods()
                .that(are(not_written_in_kotlin))
                .should(useJavaxAnnotationNullable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** An upper bound exclude acts as a prefix exclude.
    This means that `[1.0, 2.0[` will also exclude all versions starting with `2.0` that are smaller than `2.0`.
    For example versions like `2.0-dev1` or `2.0-SNAPSHOT` are no longer included in the range.
    * A _prefix_ version range: e.g. `1.\+`, `1.3.+`
    ** Only versions exactly matching the portion before the `+` are included.
    ** The range `+` on its own will include any version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    )
    
    const Doc = `check Go toolchain directives such as //go:debug
    
    This analyzer checks for problems with known Go toolchain directives
    in all Go source files in a package directory, even those excluded by
    //go:build constraints, and all non-Go source files too.
    
    For //go:debug (see https://go.dev/doc/godebug), the analyzer checks
    that the directives are placed only in Go source files, only above the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top