Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,044 for Excluded (0.14 sec)

  1. src/cmd/compile/internal/types2/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.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        /**
         * Adds a module to the module paths included in the Project.
         *
         * @param moduleFile path to the module's module file
         *
         * @since 4.0
         */
        public void addModulePath(File moduleFile) {
            modulePaths.add(pathFactory.relativePath("PROJECT_DIR", moduleFile));
        }
    
        /**
         * A set of wildcard string to be included/excluded from the resources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. 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)
  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