Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,006 for exploded (0.2 sec)

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

    stdout '^rsc.io/quote v1.5.1$'
    
    # get excluded version
    cp go.exclude.mod go.exclude.mod.orig
    ! go get -modfile=go.exclude.mod rsc.io/quote@v1.5.0
    stderr '^go: rsc.io/quote@v1.5.0: excluded by go.mod$'
    
    # get non-excluded version
    cp go.exclude.mod.orig go.exclude.mod
    go get -modfile=go.exclude.mod rsc.io/quote@v1.5.1
    stderr 'rsc.io/quote v1.5.1'
    
    # get query with excluded version
    cp go.exclude.mod.orig go.exclude.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) Primaries(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsPrimary()
    	}, exclude(excluded...))
    }
    
    // Exclude returns all clusters not given as input.
    func (c Clusters) Exclude(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return true
    	}, exclude(excluded...))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            'excluded on b'    | [[module: 'd']] | []              | ['a', 'b', 'c', 'd']
            'excluded on c'    | []              | [[module: 'd']] | ['a', 'b', 'c', 'd']
            'excluded on both' | [[module: 'd']] | [[module: 'd']] | ['a', 'b', 'c']
        }
    
        /**
         * When a module is depended on via a single chained path, it is excluded if excluded on any of the links in that path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * Within a process, only one thread is allowed write access to a given expanded directory. This is to avoid concurrent writes
     * to the same expanded directory.
     *
     * Multiple threads are allowed to extract into different expanded directories concurrently.
     * <p>
     * There currently are no checks on modifications to files in the expanded directory. This can cause problems if the expanded directory is used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/KtExpandedTypeRenderingMode.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.types
    
    /**
     * [KaExpandedTypeRenderingMode] controls how [KaTypeRenderer] renders expanded types (with an associated abbreviated type) and type aliases
     * which can still be expanded.
     */
    public enum class KaExpandedTypeRenderingMode {
        /**
         * Renders only the abbreviated type as-is, e.g. `foo.bar.StringAlias`.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/admission/exclusion/resources.go

    // should intercept.
    func Included() []schema.GroupResource {
    	return slices.Clone(included)
    }
    
    // Excluded returns a copy of the list of resources that the expression-based admission controllers
    // should ignore.
    func Excluded() []schema.GroupResource {
    	return slices.Clone(excluded)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

        maven { url '${repo.uri}' }
    }
    configurations {
        excluded {
            exclude module: 'direct'
            exclude module: 'transitive'
        }
        extendedExcluded.extendsFrom excluded
    }
    dependencies {
        excluded 'org.gradle.test:external:1.0'
        excluded 'org.gradle.test:direct:1.0'
    }
    
    task test {
        def excluded = configurations.excluded
        def extendedExcluded = configurations.extendedExcluded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

            FileHasher hasher = new DefaultFileHasher(new DefaultStreamHasher())
            def hash = hasher.hash(file("hello.zip"))
            def cachedFile = file("build/tmp/.cache/expanded/zip_${hash}/hello.txt")
            def otherFile = file("build/tmp/.cache/expanded/zip_${hash}/other.txt")
    
            buildFile << """
                abstract class CopyAndList extends DefaultTask {
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

        public val nullability: KaTypeNullability
    
        /**
         * The abbreviated type for this expanded [KaType], or `null` if this type has not been expanded from an abbreviated type or the
         * abbreviated type cannot be resolved.
         *
         * An abbreviated type is a type alias application that has been expanded to some other Kotlin type. For example, if we have a type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/UnixStartScriptGeneratorTest.groovy

            then:
            !destination.toString().contains(TextUtil.windowsLineSeparator)
            destination.toString().contains(TextUtil.unixLineSeparator)
        }
    
        def "defaultJvmOpts is expanded properly in unix 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.8K bytes
    - Viewed (0)
Back to top