Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,006 for exploded (0.12 sec)

  1. src/cmd/go/testdata/script/generate_invalid.txt

    Text file in a directory without go files.
    Go generate should ignore this directory.
    //go:generate echo Fail nogo
    
    -- excluded/a.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    // +build a
    
    //go:generate echo Fail a
    
    package excluded
    
    -- excluded/b.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. docs/bucket/replication/README.md

    ### Interaction with extended Bucket Versioning configuration
    
    When Bucket Versioning with excluded prefixes are configured objects matching these prefixes are excluded from being versioned and replicated.
    
    ```
    <VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
            <Status>Enabled</Status>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

            <version>0.1</version>
            <type>war</type>
            <scope>runtime</scope>
            <exclusions>
              <exclusion>
                <groupId>org.apache.maven.its</groupId>
                <artifactId>excluded-managed-dep</artifactId>
              </exclusion>
            </exclusions>
          </dependency>
        </dependencies>
      </dependencyManagement>
    
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeDetails.java

        @Override
        public String getValue() {
            return value;
        }
    
        public boolean isExcluded() {
            return excluded;
        }
    
        @Override
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
        public void exclude() {
            excluded = true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top