Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 965 for excluded (0.14 sec)

  1. operator/pkg/helmreconciler/prune.go

    	return append(NamespacedResources(), ClusterResources...)
    }
    
    // deleteResources delete any resources from the given component that are not in the excluded map. Resource
    // labels are used to identify the resources belonging to the component.
    func (h *HelmReconciler) deleteResources(excluded map[string]bool, coreLabels map[string]string,
    	componentName string, objects *unstructured.UnstructuredList, all bool,
    ) error {
    	var errs util.Errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/app/cmd.go

    	return nil
    }
    
    func getExcludeInterfaces() sets.String {
    	excludeAddrs := sets.New[string]()
    
    	// Get list of excluded interfaces from pod annotation
    	// TODO: Discuss other input methods such as env, flag (ssuvasanth)
    	annotations, err := bootstrap.ReadPodAnnotations("")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

         * @param artifacts The artifacts to add to the realm, may be {@code null}. Unresolved artifacts (i.e. with a
         *            missing file) will automatically be excluded from the realm.
         * @return The created class realm, never {@code null}.
         */
        private ClassRealm createRealm(
                String baseRealmId,
                RealmType type,
                ClassLoader parent,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return false;
            }
            ModuleIdentifier targetModuleId = dependencyState.getModuleIdentifier();
            if (excludeSpec.excludes(targetModuleId)) {
                LOGGER.debug("{} is excluded from {} by {}.", targetModuleId, this, excludeSpec);
                return true;
            }
    
            return false;
        }
    
        void addIncomingEdge(EdgeState dependencyEdge) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. cni/README.md

    1. Check k8s pod namespace against exclusion list (plugin config)
        - Config must exclude namespace that Istio control-plane is installed in (TODO: this may change, exclude at pod level is sufficient and we may want Istiod and other istio components to use ambient too)
        - If excluded, ignore the pod and return prevResult
    1. Setup redirect rules for the pods:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. hack/golangci.yaml.in

      max-issues-per-linter: 0
      max-same-issues: 0
    
      # The default excludes disable the "should have comment or be unexported" check from revive.
      # We want that to be enabled, therefore we have to disable all default excludes and
      # add those back one-by-one that we want. See https://github.com/golangci/golangci-lint/issues/456#issuecomment-617470264
      exclude-use-default: false
      exclude:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. 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)
Back to top