Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,004 for imposes (0.14 sec)

  1. pkg/config/visibility/visibility.go

    // all namespaces or none
    type Instance string
    
    const (
    	// Private implies namespace local config
    	Private Instance = "."
    	// Public implies config is visible to all
    	Public Instance = "*"
    	// None implies service is visible to no one. Used for services only
    	None Instance = "~"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 09 07:58:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                                empty NamespaceSelector implies that the Selector is limited
                                to selecting only workload endpoints in the same namespace
                                as the NetworkPolicy. \n For NetworkPolicy, `global()`
                                NamespaceSelector implies that the Selector is limited
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtContractBooleanExpression.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.KaParameterSymbol
    
    /**
     * Represents `booleanExpression` argument of [kotlin.contracts.SimpleEffect.implies].
     *
     * `booleanExpression` forms a boolean condition for
     * [org.jetbrains.kotlin.analysis.api.contracts.description.KaContractConditionalContractEffectDeclaration]. See
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	// If we didn't scan all of the imports from the main module, or didn't use
    	// imports.AnyTags, then we didn't necessarily load every package that
    	// contributes “direct” imports — so we can't safely mark existing direct
    	// dependencies in ld.requirements as indirect-only. Propagate them as direct.
    	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
    	if loadedDirect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_parse_err.txt

    ! go list ./p
    stderr '^p[/\\]b.go:2:2: expected ''package'', found ''EOF''$'
    ! go list -f '{{range .Imports}}{{.}} {{end}}' ./p
    stderr '^p[/\\]b.go:2:2: expected ''package'', found ''EOF''$'
    ! go list -test ./t
    stderr '^go: can''t load test package: t[/\\]t_test.go:8:1: expected declaration, found ʕ'
    ! go list -test -f '{{range .Imports}}{{.}} {{end}}' ./t
    stderr '^go: can''t load test package: t[/\\]t_test.go:8:1: expected declaration, found ʕ'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_test_cycle.txt

    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath -deps -test ./p
    cmp stderr wanterr.txt
    
    -- wanterr.txt --
    go: can't load test package: package example/p
    	imports example/q
    	imports example/r
    	imports example/p: import cycle not allowed in test
    -- go.mod --
    module example
    go 1.20
    -- p/p.go --
    package p
    -- p/p_test.go --
    package p
    import "example/q"
    -- q/q.go --
    package q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 19:18:23 UTC 2023
    - 644 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                import ${DefaultTask.name};
                import ${ExecOperations.name};
                import ${Inject.name};
                import ${TaskAction.name};
                ${snippets.imports}
    
                public abstract class SneakyTask extends DefaultTask {
                    @Inject
                    protected abstract ExecOperations getExecOperations();
    
                    public SneakyTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_replace_import.txt

    # module does not contain a package.
    # TODO(#26909): Ideally these errors should include line numbers for the imports within the main module.
    cd fail
    ! go mod tidy
    stderr '^go: localhost.fail imports\n\tw: module w@latest found \(v0.0.0-00010101000000-000000000000, replaced by ../w\), but does not contain package w$'
    stderr '^go: localhost.fail imports\n\tnonexist: nonexist@v0.1.0: replacement directory ../nonexist does not exist$'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirStarImportingScope.kt

        firScope: FirAbstractStarImportingScope,
        private val analysisSession: KaFirSession,
    ) : KaFirBasedScope<FirAbstractStarImportingScope>(firScope, analysisSession.firSymbolBuilder) {
    
        private val imports: List<StarImport> by cached {
            firScope.starImports.map { import ->
                StarImport(
                    import.packageFqName,
                    import.relativeParentClassName,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/go/format/format.go

    		if !ok || d.Tok != token.IMPORT {
    			// Not an import declaration, so we're done.
    			// Imports are always first.
    			return false
    		}
    		if d.Lparen.IsValid() {
    			// For now assume all grouped imports are unsorted.
    			// TODO(gri) Should check if they are sorted already.
    			return true
    		}
    		// Ungrouped imports are sorted by default.
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top