Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,200 for nestLev (0.23 sec)

  1. src/cmd/go/testdata/mod/example.net_ambiguous_nested_v0.1.0.txt

    Test module containing a package that is also provided by a nested module tagged
    with the same version.
    
    -- .mod --
    module example.net/ambiguous/nested
    
    go 1.16
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.net/ambiguous/nested
    
    go 1.16
    -- pkg/pkg.go --
    // Package pkg exists in both example.net/ambiguous v0.1.0
    // and example.net/ambiguous/nested v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 402 bytes
    - Viewed (0)
  2. cmd/import-boss/testdata/nested-fwd/aaa/.import-restrictions

        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/bbb
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-sub
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 460 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

    /**
     * Utility methods for validating {@link org.gradle.api.tasks.Nested} properties.
     */
    @NonNullApi
    public class NestedValidationUtil {
    
        /**
         * Validates that the {@link org.gradle.api.tasks.Nested} annotation
         * supports the given bean type.
         * <p>
         * Nested types are expected to either declare some annotated properties,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeDependentAnalysisScriptSourceModuleExitPointSnapshotTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.dataFlowInfoProvider.AbstractExitPointSnapshotTest;
    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeNormalAnalysisScriptSourceModuleExitPointSnapshotTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.dataFlowInfoProvider.AbstractExitPointSnapshotTest;
    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/jwt.yaml.tmpl

      - to:
        - operation:
            paths: ["/nested-key1"]
            methods: ["GET"]
        when:
        - key: request.auth.claims[nested][key1]
          values: ["valueB"]
      - to:
        - operation:
            paths: ["/nested-non-exist"]
            methods: ["GET"]
        when:
        - key: request.auth.claims[nested][non-exist]
          values: ["valueC"]
      - to:
        - operation:
            paths: ["/nested-key2"]
            methods: ["GET"]
        when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_retract_ambiguous.txt

    stderr 'ambiguous import: found package example.com/retract/ambiguous/nested in multiple modules:'
    stderr '^go: warning: example.com/retract/ambiguous/nested@v1.9.0-bad: retracted by module author: nested modules are bad$'
    
    -- go.mod --
    module example.com/use
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 371 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

        String getValue()
        void setValue(String v)
    }
    
    class MyPlugin extends RuleSource {
        @Model
        void things(ModelMap<Thing> things) { }
    }
    
    apply plugin: MyPlugin
    '''
        }
    
        def "nested create rule is executed only as required"() {
            buildFile << '''
    model {
        tasks {
            show(Task) {
                doLast {
                    println "value = " + $.things.test.value
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AccessInCurrentReceiverOnlyTest.kt

        @Configuring
        fun nested(fn: Nested.() -> Unit) = Unit
    
        @get:Restricted
        val nested: Nested
            get() = TODO()
    }
    
    
    private
    class Nested {
        @get:Restricted
        var n = 1
    }
    
    
    class AccessInCurrentReceiverOnlyTest {
        val schema = schemaFromTypes(TopLevelForTest::class, listOf(TopLevelForTest::class, HasAnnotatedMembers::class, Nested::class))
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                class MyTask extends DefaultTask {
                    @Nested
                    Tree tree = new Tree(
                            left: new Tree([:]),
                            right: new Tree([:])
                        )
    
                    public static class Tree {
                        @Optional @Nested
                        Tree left
    
                        @Optional @Nested
                        Tree right
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top