Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for isMatching (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/CrossVersionTestInterceptor.groovy

            for (String targetGradleVersion : targetGradleVersions) {
                if (isMatching(targetGradleVersion, previousVersion.version.version)) {
                    return true
                }
            }
            return false
        }
    
        private static boolean isMatching(String targetGradleVersion, String candidate) {
            if (targetGradleVersion.endsWith('+')) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelectorSpec.groovy

            1 * variantSet.getOverriddenAttributes() >> ImmutableAttributes.EMPTY
            2 * attributeMatcher.matches(_, _, _) >> [variant, otherVariant]
            2 * attributeMatcher.isMatching(_, _, _) >> true
            0 * consumerProvidedVariantFinder._
        }
    
        def 'does not perform schema disambiguation against a single transform result'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/SynchronizedDispatchConnection.java

                if (dispatching) {
                    // Safety check: dispatching a message should not cause the thread to dispatch another message (eg should not do any logging)
                    throw new IllegalStateException("This thread is already dispatching a message.");
                }
                dispatching = true;
                try {
                    delegate.dispatch(message);
                    delegate.flush();
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. cmd/bootstrap-peer-server.go

    		return nil
    	}
    
    	// Report differences in environment variables.
    	var missing []string
    	var mismatching []string
    	for k, v := range s1.MinioEnv {
    		ev, ok := s2.MinioEnv[k]
    		if !ok {
    			missing = append(missing, k)
    		} else if v != ev {
    			mismatching = append(mismatching, k)
    		}
    	}
    	var extra []string
    	for k := range s2.MinioEnv {
    		_, ok := s1.MinioEnv[k]
    		if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

                    dispatchLock.unlock();
                }
            } catch (MessageIOException e) {
                if (suspect) {
                    LOG.debug("Problem dispatching message to the daemon.", e);
                } else {
                    LOG.debug("Problem dispatching message to the daemon. Performing 'on failure' operation...");
                    if (!hasReceived && staleAddressDetector.maybeStaleAddress(e)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.h

    // 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
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

     * to the proper binding (if one is found).
     *
     * The binding (a tagged codec) is chosen based on the availability of a [Binding.encoding] for the value being encoded.
     * This is basically implemented as a predicate dispatching on the value type, first available Binding.encoding wins
     * and its [Binding.tag] is recorded in the output stream so decoding can be implemented via a fast array lookup.
     *
     * @see Binding.tag
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

        bind(unsupported<UnresolvedComponentResult>())
        bind(unsupported<ArtifactResult>())
    
        // Publishing types
        bind(unsupported<Publication>())
    
        // Event dispatching infrastructure types
        bind(unsupported<ListenerBroadcast<*>>())
        bind(unsupported<AbstractBroadcastDispatch<*>>())
    
        // Direct build service references
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

    }
    
    // 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
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pkg/util/protomarshal/protomarshal.go

    		return err
    	}
    	return ApplyJSONStrict(string(js), pb)
    }
    
    func ShallowCopy(dst, src proto.Message) {
    	dm := dst.ProtoReflect()
    	sm := src.ProtoReflect()
    	if dm.Type() != sm.Type() {
    		panic("mismatching type")
    	}
    	proto.Reset(dst)
    	sm.Range(func(fd protoreflect.FieldDescriptor, v protoreflect.Value) bool {
    		dm.Set(fd, v)
    		return true
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top