Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for nextId (0.32 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            1 * fileResolver.resolve("src1") >> file1
            1 * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
        }
    
        def "can use nested objects to specify the contents of the collection"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    func createTimeIncrementingPodWorkers() (*timeIncrementingWorkers, map[types.UID][]syncPodRecord) {
    	nested, runtime, processed := createPodWorkers()
    	w := &timeIncrementingWorkers{
    		w:       nested,
    		runtime: runtime,
    	}
    	nested.workerChannelFn = func(uid types.UID, in chan struct{}) <-chan struct{} {
    		ch := make(chan struct{})
    		go func() {
    			defer close(ch)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
        }
    
        def "can use nested accessors to declare a dependency version"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			"<script>var a = `\\u0024\\u007b asd \\u0060\\u0060 \\u007d`</script>",
    		},
    		{
    			"JS template lit special characters, nested lit",
    			"<script>var a = `${ `{{.I}}` }`</script>",
    			"<script>var a = `${ `\\u0024\\u007b asd \\u0060\\u0060 \\u007d` }`</script>",
    		},
    		{
    			"JS template lit, nested JS",
    			"<script>var a = `${ var a = \"{{\"a \\\" d\"}}\" }`</script>",
    			"<script>var a = `${ var a = \"a \\u0022 d\" }`</script>",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/sampleJavaProject/kotlin",files="build.gradle.kts[tags=nested-specs]"]
    include::sample[dir="snippets/files/sampleJavaProject/groovy",files="build.gradle[tags=nested-specs]"]
    ====
    
    Notice how the `src/dist` configuration has a nested inclusion specification; it is the child copy spec.
    You can, of course, add content filtering and renaming here as required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        define_values = {"no_xla_deps_in_cuda": "true"},
        visibility = ["//visibility:public"],
    )
    
    # Crosses between framework_shared_object and a bunch of other configurations
    # due to limitations in nested select() statements.
    config_setting(
        name = "framework_shared_object",
        define_values = {"framework_shared_object": "true"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	// module's selected version changes, we assume that it remains direct if the
    	// previous version was a direct dependency. That assumption might not hold in
    	// rare cases (such as if a dependency splits out a nested module, or merges a
    	// nested module back into a parent module).
    	direct map[string]bool
    
    	graphOnce sync.Once // guards writes to (but not reads from) graph
    	graph     atomic.Pointer[cachedGraph]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    sb.append("]");
                }
                sb.append("; ");
                target = target.getCause();
                if (target != null) {
                    sb.append("nested: ");
                }
            }
            return sb.toString();
        }
    
        protected void processLabelRequest(final HttpServletRequest request, final HttpServletResponse response, final FilterChain chain) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.mapOfList.map(k, k).map(k, k).size() == 1":     32,
    				"self.listOfMap.map(e, e).map(e, e).size() == 1":     32,
    				"self.listOfListMap.map(e, e).map(e, e).size() == 1": 32,
    
    				// nested comprehensions
    				"self.mapOfMap.map(k, self.mapOfMap[k].map(m, m)).size() == 1":         34,
    				"self.mapOfListMap.map(k, self.mapOfListMap[k].map(m, m)).size() == 1": 34,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        // CHECK-NEXT: ^{{.+}}({{.+}}: tensor<i1>):
        ^cond(%carg0: tensor<i1>):
          // CHECK-NEXT: [[WHILE_REGION_COND:%.+]] = "tf.Const"
          // CHECK-SAME: value = dense<true> : tensor<i1>
          %10 = "tf.VarIsInitializedOp"(%arg0) : (!tf_res) -> tensor<i1>
          // CHECK-NEXT: "tf.Yield"([[WHILE_REGION_COND]])
          "tf.Yield"(%10) : (tensor<i1>) -> ()
        // CHECK-NEXT: }, {
        }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
Back to top