Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for meaningful (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            when:
            args "-Dmaven.repo.local=${sysPropRepo.rootDir.getAbsolutePath()}"
            run 'retrieve'
    
            then:
            hasArtifact(moduleA)
        }
    
        def "fail with meaningful error message if settings.xml is invalid"() {
            given:
            m2.userSettingsFile << "invalid content"
    
            when:
            runAndFail 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            project.products.children[0].path == sharedLib("build/lib/main/debug/x86-64/app").absolutePath
        }
    
        @Requires(UnitTestPreconditions.HasXCode)
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from xcode when C++ executable product doesn't have test configured"() {
            useXcodebuildTool()
    
            given:
            buildFile << """
                apply plugin: 'cpp-application'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    	).Get()
    
    	EnableDistributionTracking = env.Register(
    		"PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING",
    		false,
    		"If enabled, Pilot will assign meaningful nonces to each Envoy configuration message, and allow "+
    			"users to interrogate which envoy has which config from the debug interface.",
    	).Get()
    
    	DistributionHistoryRetention = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            }
        }
    
        @Requires(UnitTestPreconditions.HasXCode)
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from xcode when Swift application product doesn't have test configured"() {
            useXcodebuildTool()
    
            given:
            buildFile << """
                apply plugin: 'swift-application'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/HostAndPort.java

       *
       * @param hostPortString the input string to parse.
       * @return if parsing was successful, a populated HostAndPort object.
       * @throws IllegalArgumentException if nothing meaningful could be parsed.
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static HostAndPort fromString(String hostPortString) {
        checkNotNull(hostPortString);
        String host;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // A derived attribute that returns the element type of `idx`-th ODS-declared
    // operand. If the `idx`-th operand is a variadic operand, then this attribute
    // just returns the element type of its first tensor, which is only meaningful
    // when the variadic operand has at least one tensor and the tensors all have
    // the same element type.
    class TF_DerivedOperandTypeAttr<int idx> : DerivedTypeAttr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      %push = "tf.StackPushV2"(%arg1, %elem) {swap_memory = false} : (tensor<!tf_type.resource>, tensor<f32>) -> tensor<f32>
      func.return %arg1 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests that the pass returns meaningful error message when WhileRegion op has
    // resource arguments.
    func.func @main() -> () {
      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/HostAndPort.java

       *
       * @param hostPortString the input string to parse.
       * @return if parsing was successful, a populated HostAndPort object.
       * @throws IllegalArgumentException if nothing meaningful could be parsed.
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static HostAndPort fromString(String hostPortString) {
        checkNotNull(hostPortString);
        String host;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/query.go

    			return fmt.Errorf("can't request explicit version %q of path %q in main module", q.rawVersion, q.pattern)
    		}
    		return nil
    	}
    
    	if q.pattern == "all" {
    		// If there is no main module, "all" is not meaningful.
    		if !modload.HasModRoot() {
    			return fmt.Errorf(`cannot match "all": %v`, modload.ErrNoModRoot)
    		}
    		if !versionOkForMainModule(q.version) {
    			// TODO(bcmills): "all@none" seems like a totally reasonable way to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    // to make a meaningful difference in even a 1ms duration. If an accurate timestamp is needed,
    // use nanotime instead. (The entire Windows platform is a broad exception to this rule, where nanotime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top