Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,947 for _ignored (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

         * @param ignoredPackagePrefixes Packages to ignore. Types from ignored packages are considered having no type annotations nor any annotated properties.
         * @param ignoredSuperTypes Super-types to ignore. Ignored super-types are considered having no type annotations nor any annotated properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcDetectorTest.groovy

        def "ignores buildSrc file that is not a directory"() {
            expect:
            !isValidBuildSrcBuild(temp.file("buildSrc"))
            !isValidBuildSrcBuild(temp.createFile("buildSrc"))
        }
    
        def "ignores empty buildSrc directory"() {
            expect:
            !isValidBuildSrcBuild(temp.createDir("buildSrc"))
        }
    
        def "ignores buildSrc directory without valid Gradle build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                    return reconstructed;
                }
            } catch (UncheckedException ignore) {
                // Don't log
            } catch (NoSuchMethodException ignored) {
                // Don't log
            } catch (Throwable ignored) {
                LOGGER.debug("Ignoring failure to recreate throwable.", ignored);
            }
    
            Throwable placeholder;
            if (causes.size() <= 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. testing/precondition-tester/README.md

    The issue is that we _ignore_ tests, where the precondition is not satisfied.
    Albeit being the correct solution, this can cause problems where a test is _not running anywhere_ and we don't know anything about it.
    
    For example, a `RunsOnPDP11` precondition, which we won't satisfy anywhere as we don't run tests on such hardware, will always be ignored.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/os/signal/signal.go

    			remove(signum(s))
    		}
    	}
    }
    
    // Ignore causes the provided signals to be ignored. If they are received by
    // the program, nothing will happen. Ignore undoes the effect of any prior
    // calls to [Notify] for the provided signals.
    // If no signals are provided, all incoming signals will be ignored.
    func Ignore(sig ...os.Signal) {
    	cancel(sig, ignoreSignal)
    }
    
    // Ignored reports whether sig is currently ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * Ignoring a dependency does not mean lock state ignores its transitive dependencies.
    * There is no validation that an ignored dependency is present in any configuration resolution.
    * If the dependency is present in lock state, loading it will filter out the dependency.
    * If the dependency is present in the resolution result, it will be ignored when validating that resolution matches the lock state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

        }
    
        def 'ignores visited node that is to be ignored'() {
            given:
            def identifier = newId(mid, '1.1')
            def ignoredIdentifier = newId(DefaultModuleIdentifier.newId('org', 'ignored'), '1.0')
            startWithState([identifier], LockEntryFilterFactory.forParameter(['org:ignored'], "Update lock", true))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        def "sync from file tree"() {
            given:
            file('source').create {
                file 'file1.txt'
                dir1 { file 'file2.txt' }
                ignore { file 'file3.txt' } // to be ignored
            }
            file('dest').create {
                file 'extra1.txt'
                dir1 { file 'extra2.txt' }
                dir2 { file 'extra3.txt' }
            }
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. .gitignore

    # Vagrant
    .vagrant
    network_closure.sh
    
    # Local cluster env variables
    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata.
      - On artifact foo-1.0.pom (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata."""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top