Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 231 for conflicting (0.27 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    This effectively couples the configuration of cache cleanup to the Gradle User Home those settings apply to and limits the possibility of different conflicting settings from different projects being applied to the same directory.
    
    [[dir:gradle_user_home:multi_version_cache_cleanup]]
    ==== Multiple versions of Gradle sharing a Gradle User Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

                            .contextualLabel(
                                String.format(
                                    "has conflicting %s annotations %s: %s",
                                    category.getDisplayName(),
                                    source,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

        tf_executor.fetch %island#0 : tensor<32xf32>
      }
      func.return %graph : tensor<32xf32>
    }
    
    // -----
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    
    // Tesets that the pass reports error on conflicting assignments from multiple
    // callers.
    
    func.func @error_on_conflict_multiple_callers(
      %arg0: !tf_res {tf.device = "/TPU:0"},
      %arg1: tensor<i1>) {
      tf_executor.graph {
        %island = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  4. pkg/dns/server/name_table.go

    				// No need to provide a DNS entry for each variant.
    				//
    				// NOTE: This is not done for Kubernetes Multi-Cluster Services (MCS) hosts, in order
    				// to avoid conflicting with the entries for the regular (cluster.local) service.
    				nameInfo.Namespace = svc.Attributes.Namespace
    				nameInfo.Shortname = svc.Attributes.Name
    			}
    			out.Table[hostName.String()] = nameInfo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      //
      // NOTE: Tie-breaking mechanism is not yet supported. Providing multiple
      // `QuantizationSpec` with conflicting quantizable units may result in
      // undefined behavior.
      // TODO: b/307620778 - Support tie-breaking for conflicting specs.
      repeated QuantizationSpec specs = 1;
    }
    
    // Configuration for quantization debugger.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            and:
            resolveArtifacts(project1) { expectFiles 'changed-module-changed.jar', 'project1-1.0.jar', 'project2-2.0.jar' }
        }
    
        def "reports failure when project dependency references a project with multiple conflicting publications"() {
            createBuildScripts("""
    project(":project2") {
        publishing {
            publications {
                extraComponent(IvyPublication) {
                    from components.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TableCollectors.java

        return TableCollectors.<T, R, C, V, I>toTable(
            rowFunction,
            columnFunction,
            valueFunction,
            (v1, v2) -> {
              throw new IllegalStateException("Conflicting values " + v1 + " and " + v2);
            },
            tableSupplier);
      }
    
      static <
              T extends @Nullable Object,
              R extends @Nullable Object,
              C extends @Nullable Object,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    				if foundSum != "" && foundSum != h { // conflicting sums exist
    					return "", false
    				}
    				foundSum = h
    			}
    		}
    	}
    	for _, h := range goSum.m[mod] {
    		if !strings.HasPrefix(h, "h1:") {
    			continue
    		}
    		if !goSum.status[modSum{mod, h}].dirty {
    			if foundSum != "" && foundSum != h { // conflicting sums exist
    				return "", false
    			}
    			foundSum = h
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    contextualLabel == 'Type \'MyTask\' property \'file\' has conflicting type annotations declared: @InputFile, @OutputFile'
                    details == 'The different annotations have different semantics and Gradle cannot determine which one to pick'
                    solutions == [ 'Choose between one of the conflicting annotations' ]
                    additionalData.asMap == [
                        'typeName' : 'MyTask',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this, you must either:
    
    - remove the input annotations from the property, or
    - remove the ignoring annotation from the property.
    
    [[conflicting_annotations]]
    == Conflicting annotations
    
    This error indicates that a property is annotated with conflicting annotations, that is to say annotations which have different, irreconciliable semantics.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top