Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 5,298 for somme (0.09 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    vfsStore.store(regularFile("${location}/some/child"))
                    vfsStore.store(regularFile("${location}/other/child"))
                    instant.partialSnapshotsStored
                    thread.blockUntil.invalidated
                    vfsStore.store(regularFile("${location}/other/child2"))
                    vfsStore.store(regularFile("${location}/some/child2"))
                    instant.snapshottingFinished
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/custom-template.yaml.injected

            resources: {}
            volumeMounts:
            - mountPath: /var/lib/data/foo.json
              name: some-injected-file
              subPath: foo.json
          volumes:
          - downwardAPI:
              items:
              - fieldRef:
                  fieldPath: metadata.annotations['foo']
                path: foo.json
            name: some-injected-file
    status: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 05:41:41 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/RelativeFileTest.groovy

        def "can get base directory of relative file" () {
            File file = new File("/some/relatively/long/path/to/a/file")
            RelativePath relativePath = RelativePath.parse(true, "to/a/file")
            RelativeFile relativeFile = new RelativeFile(file, relativePath)
    
            expect:
            relativeFile.getBaseDir() == new File("/some/relatively/long/path")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 02 13:47:53 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinInitScriptIntegrationTest.kt

                apply<GradlePluginPlugin>()
    
                extensions.getByType(MyExtension::class).some("api.get")
                extensions.configure<MyExtension> { some("api.configure") }
                the<MyExtension>().some("kotlin.get")
                configure<MyExtension> { some("kotlin.configure") }
            """)
            withBuildScript("""tasks.register("noop")""")
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/config/config_test.go

      controlPlaneAuthPolicy: NONE
      proxyMetadata:
        SOME: setting
      drainDuration: 1s`
    	proxyOverride := `discoveryAddress: foo:123
    proxyMetadata:
      SOME: setting
    drainDuration: 1s
    controlPlaneAuthPolicy: NONE`
    	overridesExpected := func() *meshconfig.ProxyConfig {
    		m := mesh.DefaultProxyConfig()
    		m.DiscoveryAddress = "foo:123"
    		m.ProxyMetadata = map[string]string{"SOME": "setting"}
    		m.DrainDuration = durationpb.New(time.Second)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

         */
        @Nonnull
        <T> Optional<T> lookupOptional(Class<T> type, String name);
    
        /**
         * Performs a collection lookup for given typed components.
         *
         * @param type The component type.
         * @return The list of components. The list may be empty if no components found.
         * @param <T> The component type.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformErrorHandlerTest.groovy

            handler.enterClassLoadingScope("some/Class")
            handler.exitClassLoadingScope()
    
            then:
            noExceptionThrown()
        }
    
        def "rethrows the #expectedExceptionClass.simpleName if the scope exits with #exception.class.simpleName"() {
            given:
            TransformErrorHandler handler = handler()
    
            when:
            handler.enterClassLoadingScope("some/Class")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/BaseSerializerFactoryTest.groovy

            usesEfficientSerialization(new File("some-file"), serializer, 10) == new File("some-file")
        }
    
        def "uses efficient serialization for Paths"() {
            expect:
            def serializer = factory.getSerializerFor(Path)
            def encoded = toBytes(Paths.get("some-file"), serializer)
            fromBytes(encoded, serializer) == Paths.get("some-file")
            encoded.length == 10
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObjectTest.groovy

            }
        }
    
        def loadsFromXmlFile() {
            def inputFile = tmpDir.file('input.xml')
            inputFile.text = '<root name="some-xml"/>'
    
            when:
            object.load(inputFile)
    
            then:
            rootElement == 'some-xml'
        }
    
        def loadsFromDefaultResource() {
            when:
            object.loadDefaults()
    
            then:
            rootElement == 'default-xml'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
          - name: my-header
            value: some-value
            type: Exact
          queryParams:
          - name: my-param
            value: some-value
            type: RegularExpression
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: PathPrefix
            value: /
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top