Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,044 for Excluded (0.16 sec)

  1. src/go/ast/filter.go

    type MergeMode uint
    
    const (
    	// If set, duplicate function declarations are excluded.
    	FilterFuncDuplicates MergeMode = 1 << iota
    	// If set, comments that are not associated with a specific
    	// AST node (as Doc or Comment) are excluded.
    	FilterUnassociatedComments
    	// If set, duplicate import declarations are excluded.
    	FilterImportDuplicates
    )
    
    // nameOf returns the function (foo) or method name (foo.bar) for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            then:
            def e2 = thrown(TaskSelectionException)
            e2.message == message
                .replace("tasks that match", "excluded tasks that match")
                .replace("matching tasks", "matching excluded tasks")
    
            where:
            path        | message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

        }
    
        def "replacement target is not used if it is excluded"() {
            declaredDependencies 'a', 'b->c'
            declaredReplacements 'a->c'
            buildFile << "configurations.all { exclude module: 'c' }"
            expect:
            resolvedModules 'a', 'b'
        }
    
        def "replacement target is used if replacement source is excluded"() {
            declaredDependencies 'a', 'b->c'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

        def "resolves available-at variant even if transitive dependencies are excluded"() {
            given:
            mavenHttpRepo.module('org', 'moduleB', '1.0')
                .dependsOn(mavenHttpRepo.module("org", "moduleA", "1.0"), exclusions: [[group: '*', module: '*']])
                .publish() // no Gradle Module metadata for this one because we don't support excludes on dependencies
            repository {
                'org:moduleA:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        }
    
        def "detects changes in filtered file tree inputs"() {
            def sources = file("sources").createDir()
            def excludedFile = sources.file("sub/some/excluded").createFile()
            def includedFile = sources.file("sub/some/included.txt").createFile()
    
            buildFile << taskOnlyIncludingTxtFiles
    
            when:
            succeeds("myTask")
            then:
            outputContains("includedFiles: 1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. src/cmd/vet/vet_test.go

    			// file1 has testtag and file2 has !testtag.
    			if !bytes.Contains(output, []byte(filepath.Join("tagtest", want))) {
    				t.Errorf("%s: %s was excluded, should be included", tag, want)
    			}
    			if bytes.Contains(output, []byte(filepath.Join("tagtest", dontwant))) {
    				t.Errorf("%s: %s was included, should be excluded", tag, dontwant)
    			}
    			if t.Failed() {
    				t.Logf("err=%s, output=<<%s>>", err, output)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. 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)
Back to top