Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for isMatching (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

                AttributeValue<?> producerValue = candidateAttributes.findEntry(attributeName);
    
                if (consumerValue.isPresent() && producerValue.isPresent()) {
                    if (attributeMatcher.isMatching(untyped, producerValue.coerce(attribute), consumerValue.coerce(attribute))) {
                        compatible.add(new AssessedAttribute<>(attribute, Cast.uncheckedCast(consumerValue.get()), Cast.uncheckedCast(producerValue.get())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            if (!consumerAttributes.isEmpty() && !conf.getAttributes().isEmpty()) {
                // Need to validate that the selected configuration still matches the consumer attributes
                if (!attributeMatcher.isMatching(conf.getAttributes(), consumerAttributes)) {
                    throw failureHandler.incompatibleRequestedConfigurationFailure(consumerSchema, attributeMatcher, consumerAttributes, targetComponent, conf);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            Object result;
            try {
                LOGGER.debug("Connected to daemon {}. Dispatching request {}.", connection.getDaemon(), build);
                connection.dispatch(build);
                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/nettest/conntest.go

    					break
    				}
    				t.Errorf("unexpected Read error: %v", err)
    			}
    
    			v := binary.LittleEndian.Uint64(buf)
    			binary.LittleEndian.PutUint64(buf, v+1)
    			if prev != 0 && prev+2 != v {
    				t.Errorf("mismatching value: got %d, want %d", v, prev+2)
    			}
    			prev = v
    			if v == 1000 {
    				break
    			}
    
    			if _, err := c.Write(buf); err != nil {
    				t.Errorf("unexpected Write error: %v", err)
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		}
    		// This means that during reinvocation, a webhook will not be
    		// called for the first time. For example, if the webhook is
    		// skipped in the first round because of mismatching labels,
    		// even if the labels become matching, the webhook does not
    		// get called during reinvocation.
    		if reinvokeCtx.IsReinvoke() && !webhookReinvokeCtx.ShouldReinvokeWebhook(invocation.Webhook.GetUID()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

        } else {
          if (first_start != second_start || first_limit != second_limit)
            return rewriter.notifyMatchFailure(
                second, "non-concat dims have mismatching slice bounds");
        }
    
        new_start.push_back(first_start);
        new_limit.push_back(second_limit);
        new_slice_shape.push_back(second_limit - first_start);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util_test.go

    		{
    			name: "zubzone wildcard matching",
    			locality: &core.Locality{
    				Region: "region1",
    				Zone:   "zone1",
    			},
    			rule:  "region1/zone1",
    			match: true,
    		},
    		{
    			name: "subzone mismatching",
    			locality: &core.Locality{
    				Region: "region1",
    				Zone:   "zone1",
    			},
    			rule:  "region1/zone1/subzone2",
    			match: false,
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    		// We should only get a Named underlying type here during type checking
    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/go/types/named.go

    		// We should only get a Named underlying type here during type checking
    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// Example:
    	//  var x = 1
    	//  var _ = x.(float64)
    	InvalidAssert
    
    	// ImpossibleAssert occurs for a type assertion x.(T) when the value x of
    	// interface cannot have dynamic type T, due to a missing or mismatching
    	// method on T.
    	//
    	// Example:
    	//  type T int
    	//
    	//  func (t *T) m() int { return int(*t) }
    	//
    	//  type I interface { m() int }
    	//
    	//  var x I
    	//  var _ = x.(T)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top