Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 888 for nestLev (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

            createDirs("a", "nested")
            settingsFile << """
                include "a"
                includeBuild "nested"
    
                rootProject.name = "root"
                rootProject.buildFileName = 'root.gradle'
    
            """
    
            def nestedSettingsFile = file("nested/settings.gradle")
            nestedSettingsFile << """
                rootProject.name = "nested"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                }
    
                class DefaultCompositeModel implements java.io.Serializable {
                    private final DefaultModel nested
                    DefaultCompositeModel(DefaultModel nested) { this.nested = nested }
                    BaseModel getNested() { nested }
                }
            """
        }
    
        def "supports model polymorphism"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

          notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
      - when:
        - key: "request.auth.claims[nested1][nested2]"
          values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
          notValues: ["not-nested", "not-nested-prefix-*", "*-not-suffix-nested", "*"]
      - when:
        - key: "destination.ip"
          values: ["10.10.10.10", "192.168.10.0/24"]
          notValues: ["90.10.10.10", "90.168.10.0/24"]
      - when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ClassBytesRepositoryTest.kt

            )
    
            assertClassFilePathCandidatesFor(
                "foo.My.Nested",
                listOf(
                    "foo/My/Nested.class", "foo/My/NestedKt.class",
                    "foo/My${'$'}Nested.class", "foo/My${'$'}NestedKt.class",
                    "foo${'$'}My${'$'}Nested.class", "foo${'$'}My${'$'}NestedKt.class"
                )
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

            def file2 = tmpDir.file('different/nested/jar2.jar')
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, [file1, file2]) == "${tmpDirPath}different/jar1.jar ${tmpDirPath}different/nested/jar2.jar"
        }
    
        def "url encodes spaces in manifest classpath"() {
            when:
            def classpathFiles = [tmpDir.file('mydir/jar one.jar'), tmpDir.file('mydir/nested dir/jar two.jar')]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            outputContains("Hello from root build's plugin")
        }
    
        @ToBeFixedForConfigurationCache
        def "prefers a source mapping defined in the root build to one defined in a nested build when the nested build requests plugins"() {
            given:
            vcsMapping('org.test:first', first)
            // root build does not inject any plugins to second
            vcsMapping('org.test:second', second)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                action.run()
            }
    
            !models.mayRunInParallel
            models.projects.path == [':', ':a', ':b']
        }
    
        @TargetGradleVersion(">=3.4")
        def "nested action can run further nested actions"() {
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

            getCallableSymbols(names.toList())
    
        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tests/transaction_test.go

    		t.Fatalf("Should find saved record")
    	}
    }
    
    func TestNestedTransactionWithBlock(t *testing.T) {
    	var (
    		user  = *GetUser("transaction-nested", Config{})
    		user1 = *GetUser("transaction-nested-1", Config{})
    		user2 = *GetUser("transaction-nested-2", Config{})
    	)
    
    	if err := DB.Transaction(func(tx *gorm.DB) error {
    		tx.Create(&user)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

              "name": "instance",
              "unspecified": "bar"
            },
            "spec": {
            }
          }
        }
      }
    }
    `, expectedPruned: []string{"nested.spec.embedded.spec.unspecified", "nested.spec.embedded.unspecified", "nested.spec.unspecified", "nested.unspecified", "pruned.spec.unspecified", "pruned.unspecified", "unspecified"}},
    		{name: "x-kubernetes-embedded-resource, with root=true", json: `
    {
      "apiVersion": "foo/v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top