Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 5,298 for somme (0.05 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            DefaultUnlockedConfiguration   | Configuration      | "project.configurations.create('some')"     | "project.configurations.getByName('some')"           | 'file collection'
            DefaultResolvableConfiguration | Configuration      | "project.configurations.resolvable('some')" | "project.configurations.getByName('some')"           | 'file collection'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/ExampleSelfLinkProcessorTest.groovy

    <div class="content">
    <div class="paragraph">
    <p>some text</p>
    </div>
    </div>
    </div>""")
        }
    
        def "renders example without title"() {
            given:
            String asciidocContent = """
    ====
    some text
    ====
    """
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    ```groovy
    library("some-alias", "com.mycompany:some-lib:1.1").withoutVersion()
    // or
    library("some-alias", "com.mycompany", "some-lib").version("1.1")
    ```
    
    If you are using TOML files to create a catalog, you can use one of the following notations:
    
    ```toml
    [libraries]
    some-alias = { group="com.mycompany",
        name="some-lib",
        version="1.1"
    }
    # or
    some-alias = {
         module="com.mycompany:some-lib",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/retry/retry_test.go

    				Retries: &networking.HTTPRetry{
    					Attempts:      2,
    					RetryOn:       "some,fake,conditions",
    					PerTryTimeout: durationpb.New(time.Second * 3),
    				},
    			},
    			assertFunc: func(g *WithT, policy *envoyroute.RetryPolicy) {
    				g.Expect(policy).To(Not(BeNil()))
    				g.Expect(policy.RetryOn).To(Equal("some,fake,conditions"))
    				g.Expect(policy.PerTryTimeout).To(Equal(durationpb.New(time.Second * 3)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/OnDemandFileAccessTest.groovy

        def setup() {
            file = dir.file("some-target-file")
            lock = new OnDemandFileAccess(file, "some-lock", manager)
        }
    
        def "acquires shared lock to read file"() {
            def action = {} as Supplier
    
            when:
            lock.readFile(action)
    
            then:
            !file.exists()
            1 * manager.lock(file, mode(LockMode.Shared), "some-lock") >> targetLock
            1 * targetLock.readFile(action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_tls_test.go

    					},
    					Sni: "some-sni.com",
    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode ISTIO_MUTUAL and H2",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_ISTIO_MUTUAL,
    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    			},
    			h2: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            expect:
            initialRoot.store(childAbsolutePath("some/child"), CASE_SENSITIVE, snapshot, changeListener) == initialRoot
            removedSnapshots.empty
            addedSnapshots.empty
        }
    
        def "invalidate removes the node"() {
            expect:
            initialRoot.invalidate(childAbsolutePath("some/child"), CASE_SENSITIVE, changeListener) == Optional.empty()
            removedSnapshots == [initialRoot]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

            ]
    
            def propertiesEntry1 = contextFor(context, 'some/path/to/foo.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
            def propertiesEntry2 = contextFor(context, 'some/path/to/bar.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
            def propertiesEntry3 = contextFor(context, 'some/other/path/to/fuzz.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h

    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Populates TensorFlow lowering patterns to lower some of the TensorFlow
    // operations that can be represented using other TensorFlow operations.
    // TODO(laurenzo): For some reason, TFLite uses this pass and has exact
    // requirements on what it can do. This is fragile and should be fixed (at a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            File included2 = new File(testDir, 'subDir2/included2')
            [included1, included2].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            when:
            def files = fileTree.files
    
            then:
            files == [included1, included2] as Set
    
            and:
            1 * listener.fileCollectionObserved(fileTree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top