Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,609 for Lach (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args.mlir

    // CHECK:            input_arg
    // CHECK:              type: DT_RESOURCE
    // CHECK:            output_arg
    // CHECK:              type: DT_RESOURCE
    // CHECK:          ret
    
    // Check _resource_arg_unique_id for each argument. Since they alias each other,
    // both values are 0.
    // CHECK:          arg_attr
    // CHECK-NEXT:       key: 0
    // CHECK-NEXT:       value
    // CHECK:             key: "_resource_arg_unique_id"
    // CHECK-NEXT:        value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                        }
                    }
                """
            }
    
            ('a'..'z').each {
                createDirs(it)
                settingsFile << "include '$it'\n"
                file("${it}/build.gradle") << """
                    apply plugin: 'java-library'
                """
                ['project1', 'project2'].each { downstream ->
                    file("$downstream/build.gradle") << """
                        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    To build native software using Gradle, your project should define one or more _native components_. Each component represents either an executable or a library that Gradle should build. A project can define any number of components. Gradle does not define any components by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                server.expectConcurrent(it)
            }
            configurationCacheRun ":finalized:task", "--parallel"
            configurationCache.assertStateStored()
    
            and: "unrequested finalizer dependencies not to run in parallel when loading the graph"
            [":finalized:dep", ":finalized:task", ":finalizer:dep", ":finalizer:task"].each {
                server.expectConcurrent(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            0 * _
        }
    
        def testCanScanForFiles() {
            File included1 = new File(testDir, 'subDir/included1')
            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:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

                        }
                    }
                }
            }
            if (componentLevelAttributes) {
                componentLevelAttributes.each { key, value ->
                    module.attributes[key] = value
                }
            }
            if (variants) {
                variants.each { variant ->
                    module.withVariant(variant.name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/sanitize.js

    up",function(a){9!==a.keyCode&&c.valAttr("is-escaped","no")}),a.each(e,function(a,c){b=b.replace(new RegExp(a,"g"),c)}),b.replace(new RegExp("__%AMP%__","g"),"&"))}},e=function(b,e,f){e||(e=a("form")),e.each||(e=a(e));var g=function(){var b=a(this),c=b.val();a.split(b.attr("data-sanitize"),function(a){if(!(a in d))throw new Error('Use of unknown sanitize command "'+a+'"');c=d[a](c,b,f)}),b.val(c).trigger("keyup.validation")};e.each(function(){var b=a(this);f.sanitizeAll&&b.find("input,textarea")...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/example_test.go

    	// Print package-level variables in initialization order.
    	fmt.Printf("InitOrder: %v\n\n", info.InitOrder)
    
    	// For each named object, print the line and
    	// column of its definition and each of its uses.
    	fmt.Println("Defs and Uses of each named object:")
    	usesByObj := make(map[types2.Object][]string)
    	for id, obj := range info.Uses {
    		posn := id.Pos()
    		lineCol := fmt.Sprintf("%d:%d", posn.Line(), posn.Col())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                artifact([:])
            }
    
            artifacts.each { artifact ->
                def artifactFile = file(artifact)
                publish(artifactFile) { Writer writer ->
                    writer << "${artifactFile.name} : $artifactContent"
                }
            }
    
            variants.each {
                it.artifacts.findAll { it.name }.each {
                    def variantArtifact = moduleDir.file(it.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/interfaces.go

    	// AddPodAdmitHandler adds the specified handler.
    	AddPodAdmitHandler(a PodAdmitHandler)
    }
    
    // PodSyncLoopHandler is invoked during each sync loop iteration.
    type PodSyncLoopHandler interface {
    	// ShouldSync returns true if the pod needs to be synced.
    	// This operation must return immediately as its called for each pod.
    	// The provided pod should never be modified.
    	ShouldSync(pod *v1.Pod) bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
Back to top