Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 925 for exploded (0.17 sec)

  1. VULNERABILITY_REPORT.md

       reported vulnerability and how it might be exploited. Alternatively,
       a well-established vulnerability identifier, e.g. CVE number, can be
       used instead.
    
    Based on the description mentioned above, a MinIO engineer or security team
    member investigates:
    
    - Whether the reported vulnerability exists.
    - The conditions that are required such that the vulnerability can be exploited.
    - The steps required to fix the vulnerability.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyFileVisitorImplTest.groovy

            1 * instantiator.newInstance(DefaultFileCopyDetails.class, dirDetails, specResolver, objectFactory, fileSystem) >> defaultFileCopyDetails
            1 * action.processFile(defaultFileCopyDetails)
            0 * defaultFileCopyDetails.excluded
        }
    
        def "visit file if no action are defined in copy spec"() {
            given:
            FileVisitDetails dirDetails = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 20 13:25:37 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin.go

    	if pi.Containers.Contains(ISTIOINIT) {
    		log.Infof("excluded due to being already injected with istio-init container")
    		return nil
    	}
    
    	if val, ok := pi.ProxyEnvironments["DISABLE_ENVOY"]; ok {
    		if val, err := strconv.ParseBool(val); err == nil && val {
    			log.Infof("excluded due to DISABLE_ENVOY on istio-proxy", podNamespace, podName)
    			return nil
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_tags.txt

    env GO111MODULE=on
    
    # get should add modules needed to build packages, even if those
    # dependencies are in sources excluded by build tags.
    # All build tags are considered true except "ignore".
    go mod init m
    go get .
    go list -m all
    stdout 'example.com/version v1.1.0'
    stdout 'rsc.io/quote v1.5.2'
    
    -- empty.go --
    package m
    
    -- excluded.go --
    // +build windows,mips
    
    package m
    
    import _ "example.com/version"
    
    -- tools.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:18:36 UTC 2021
    - 566 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            action.execute(details)
    
            then:
            if (excluded) {
                0 * details.notFound()
            } else {
                1 * details.notFound()
            }
    
            where:
            method              | expr     | group           | module | version | excluded
            'Group'             | 'org'    | 'org'           | 'foo'  | '1.0'   | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            moduleIdentifierFactory.module('excluded-group-id', 'excluded-artifact-id')
                >> DefaultModuleIdentifier.newId('excluded-group-id', 'excluded-artifact-id')
    
            then:
            def excluded = pomReader.dependencies[keyGroupTwo].excludedModules
            excluded == [DefaultModuleIdentifier.newId('excluded-group-id', 'excluded-artifact-id')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

        List<String> getIncludes();
    
        /**
         * Sets list of elements that should be excluded from check.
         *
         * @param excludes Exclusions
         */
        void setExcludes(List<String> excludes);
    
        /**
         * List of elements that should be excluded from check. Names can use wildcards (* and ?).
         * If left empty, no elements will be excluded. Defaults to an empty list.
         */
        @Input
        List<String> getExcludes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            project.dependencies.add('excluded', project.layout.files('lib/guava.jar'))
            module.scopes.TEST.minus << project.configurations.getByName('excluded')
            def result = dependenciesProvider.provide(module)
    
            then:
            result.size() == 0
        }
    
        def "dependency is excluded if added to any minus configuration"() {
            applyPluginToProjects()
            project.apply(plugin: 'java')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            // or has generated some lines with one or the other character
            carriageLineEndings == newlineEndings
            windowsLineEndings == newlineEndings
        }
    
        def "defaultJvmOpts is expanded properly in windows script"() {
            given:
            JavaAppStartScriptGenerationDetails details = createScriptGenerationDetails(['-Dfoo=bar', '-Xint'], 'bin')
            Writer destination = new StringWriter()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactFilterIntegrationTest.groovy

                rootProject.name = 'root'
                include 'libInclude'
                include 'libExclude'
            """
            mavenRepo.module("org.include", "included", "1.3").publish()
            mavenRepo.module("org.exclude", "excluded", "2.3").publish()
    
            buildFile << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
                project(':libInclude') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top