Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 759 for excluded (0.53 sec)

  1. 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)
  2. hack/golangci.yaml

      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: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/build.go

    		// Ignore "not found" and "no matching version" errors.
    		// This means the proxy has no matching version or no versions at all.
    		//
    		// Ignore "disallowed" errors. This means the current version is
    		// excluded or retracted and there are no higher allowed versions.
    		//
    		// We should report other errors though. An attacker that controls the
    		// network shouldn't be able to hide versions by interfering with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                $includeSystemErrConf
            }""".stripIndent())
    
            expect:
            executer.withTestConsoleAttached()
            succeeds("test")
    
            and: "all output is included/excluded in the xml report as configured"
            def junitResult = new JUnitXmlTestExecutionResult(testDirectory)
            if (standardOutIncluded) {
                assert junitResult.getSuiteStandardOutput("FooTest").isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/go/types/instantiate.go

    	// Constraints with empty type sets were already excluded above.
    	if !Ti.typeSet().hasTerms() {
    		return checkComparability() // nothing to do
    	}
    
    	// If V is itself an interface, each of its possible types must be in the set
    	// of T types (i.e., the V type set must be a subset of the T type set).
    	// Interfaces V with empty type sets were already excluded above.
    	if Vi != nil {
    		if !Vi.typeSet().subsetOf(Ti.typeSet()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    	outer := cryptobyte.String(e.Value)
    	var toplevel, permitted, excluded cryptobyte.String
    	var havePermitted, haveExcluded bool
    	if !outer.ReadASN1(&toplevel, cryptobyte_asn1.SEQUENCE) ||
    		!outer.Empty() ||
    		!toplevel.ReadOptionalASN1(&permitted, &havePermitted, cryptobyte_asn1.Tag(0).ContextSpecific().Constructed()) ||
    		!toplevel.ReadOptionalASN1(&excluded, &haveExcluded, cryptobyte_asn1.Tag(1).ContextSpecific().Constructed()) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

            'compile' | 'api'
            'runtime' | 'runtime'
        }
    
        def 'platform deselection / reselection does not cause orphan edges'() {
            given:
            def depExcluded = mavenHttpRepo.module('org.test', 'excluded', '1.0').publish()
            def depA = mavenHttpRepo.module('org.test', 'depA', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/runtime/traceback_test.go

    		// Check that a method inlined into a wrapper prints correctly
    		r := ttiWrapper1()
    		check(t, r, "runtime_test.ttiWrapper.m1(...)", "runtime_test.ttiWrapper1()")
    	})
    
    	t.Run("excluded", func(t *testing.T) {
    		// Check that when F -> G is inlined and F is excluded from stack
    		// traces, G still appears.
    		r := ttiExcluded1()
    		check(t, r, "runtime_test.ttiExcluded3(...)", "runtime_test.ttiExcluded1()")
    	})
    }
    
    type ttiResult struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        /**
         * Returns the names of the tasks to be excluded from this build. When empty, no tasks are excluded from the build.
         *
         * @return The names of the excluded tasks. Returns an empty set if there are no such tasks.
         */
        public Set<String> getExcludedTaskNames() {
            return excludedTaskNames;
        }
    
        /**
         * Sets the tasks to exclude from this build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *
     *     //and hint to mark some of existing source dirs as generated sources
     *     generatedSourceDirs += file('some-extra-source-folder')
     *
     *     //and some extra dirs that should be excluded by IDEA
     *     excludeDirs += file('some-extra-exclude-dir')
     *
     *     //if you don't like the name Gradle has chosen
     *     name = 'some-better-name'
     *
     *     //if you prefer different output folders
     *     inheritOutputDirs = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top