Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 458 for emits (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

        else if (keep_dims.getValue())
          out_shape.push_back(1);
      }
      return RankedTensorType::get(out_shape, element_ty);
    }
    
    // Verifies that the given types are cast compatible. If not, emits appropriate
    // error for the given op. If mask_one_dim is set to true, then the types are
    // allowed to have one mismatching dimension. Masking one of the dimensions is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // The handling of facts in the analysis system parallels the handling
    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

            "executable"    | "when configured"                    | null     | "other"        | "other"
            "assigned tool" | "when configured"                    | "other"  | null           | "other"
        }
    
        def "emits deprecation warning if executable specified as relative path"() {
            given:
            def executable = TextUtil.normaliseFileSeparators(Jvm.current().javaExecutable.toString())
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    All test classes are based on the use of Spock, though it should be relatively easy to adapt the code to a different test framework.
    
    [[unit-tests]]
    === Implementing unit tests
    
    The URL verifier plugin emits HTTP GET calls to check if a URL can be resolved successfully.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertFileContent('WEB-INF/web.xml', webXml.text)
    
            when:
            withBuildCache().run "clean", "war"
    
            then:
            skipped ":war"
        }
    
        def "emits deprecation message when war convention is accessed"() {
            setup:
            buildFile << '''
                plugins {
                    id 'war'
                }
    
                tasks.register('custom') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/cover/cfg_test.go

    	// "EmitMetaFile" mode. When running in this mode, cmd/cover walks
    	// the package doing instrumentation, but when finished, instead of
    	// writing out instrumented source files, it directly emits a
    	// meta-data file for the package in question, essentially
    	// simulating the effect that you would get if you added a dummy
    	// "no-op" x_test.go file and then did a build and run of the test.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/inittask.go

    package ld
    
    import (
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"sort"
    )
    
    // Inittasks finds inittask records, figures out a good
    // order to execute them in, and emits that order for the
    // runtime to use.
    //
    // An inittask represents the initialization code that needs
    // to be run for a package. For package p, the p..inittask
    // symbol contains a list of init functions to run, both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/proxy/util/utils.go

    			ip = v.IP
    		case *net.IPNet:
    			ip = v.IP
    		default:
    			continue
    		}
    		if isValid(ip) {
    			ips.Insert(ip.String())
    		}
    	}
    	return ips
    }
    
    // LogAndEmitIncorrectIPVersionEvent logs and emits incorrect IP version event.
    func LogAndEmitIncorrectIPVersionEvent(recorder events.EventRecorder, fieldName, fieldValue, svcNamespace, svcName string, svcUID types.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            }
    
            then:
            1 * listener.finished(_) >> { BuildOperationFinishedNotification n ->
                assert n.notificationOperationId == d1.id
            }
        }
    
        def "emits progress events"() {
            given:
            getOrCreateBridge().valve.start()
            register(listener)
            def d1 = d(1, null, 1)
            def d2 = d(2, 1, null)
            def d3 = d(3, 2, 3)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                            f.parentFile.mkdirs()
                            f.text = val
                        }
                    }
                }
            """
        }
    
        def "emits pack/unpack and store/load operations for local"() {
            def localCache = new TestBuildCache(file("local-cache"))
            settingsFile << localCache.localCacheConfiguration()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top