Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for conjunction (0.25 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                contextualLabel == 'Type \'MyTransformParameters\' property \'incrementalNonFileInput\' is annotated with @Incremental but that is not allowed for \'Input\' properties'
                details == 'This modifier is used in conjunction with a property of type \'Input\' but this doesn\'t have semantics'
                solutions == [ 'Remove the \'@Incremental\' annotation' ]
                additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    * faster compilation thanks to reduced classpath size
    * less recompilations when implementation dependencies change: consumers would not need to be recompiled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

              if (!seen_ops.contains(ri)) {
                seen_ops.insert(ri);
                replicated_input_ops.push_back(ri);
              }
            }
            // When model parallelism is used in conjunction with data parallelism
            // for resource inputs, we need to collect the per replica resource
            // inputs from input to `tf.TPUPartitionedInputV2` ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            config.description("is annotated with @${config.annotatedWith} but that is not allowed for '${config.incompatibleWith}' properties")
                .reason("This modifier is used in conjunction with a property of type '${config.incompatibleWith}' but this doesn't have semantics")
                .solution("Remove the '@${config.annotatedWith}' annotation")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    	// required, as the computed sidecar scope version would not monotonically increase.
    	LastPushContext *PushContext
    	// LastPushTime records the time of the last push. This is used in conjunction with
    	// LastPushContext; the XDS cache depends on knowing the time of the PushContext to determine if a
    	// key is stale or not.
    	LastPushTime time.Time
    }
    
    type WatchedResource = xds.WatchedResource
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Help PREV NEXT FRAMES NO FRAMES All Classes index-all.html Overview Package Class Use Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES All Classes A B C D E F H I M N O R S T _ A AllOf<T> - Class in org.hamcrest.core Calculates the logical conjunction of multiple matchers. AllOf(Iterable<Matcher<? super T>>) - Constructor for class org.hamcrest.core.AllOf allOf(Iterable<Matcher<? super T>>) - Static method in class org.hamcrest.core.AllOf Creates a matcher that matches if the examined object...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.2.md

    Node selectors (to constrain pods to schedule on a subset of nodes) now support
    the operators {<code>In, NotIn, Exists, DoesNotExist, Gt, Lt</code>}  instead of just conjunction of exact match on node label values. In
    addition, we’ve introduced a new “soft” kind of node selector that is just a
    hint to the scheduler; the scheduler will try to satisfy these requests but it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

      explicit Predicate(int64_t id) : id_(id) {}
    
     private:
      const int64_t id_;
    
      Predicate(const Predicate&) = delete;
      void operator=(const Predicate&) = delete;
    };
    
    // Represents a logical conjunction of a set of predicates.
    class AndPredicate : public Predicate {
     public:
      explicit AndPredicate(int64_t id, std::vector<Predicate*> operands)
          : Predicate(id), operands_(std::move(operands)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/popper.min.js.map

    ? 'left' : 'top';\n  const opSide = isVertical ? 'bottom' : 'right';\n  const arrowElementSize = getOuterSizes(arrowElement)[len];\n\n  //\n  // extends keepTogether behavior making sure the popper and its\n  // reference have enough pixels in conjunction\n  //\n\n  // top/left side\n  if (reference[opSide] - arrowElementSize < popper[side]) {\n    data.offsets.popper[side] -=\n      popper[side] - (reference[opSide] - arrowElementSize);\n  }\n  // bottom/right side\n  if (reference[side] + arrowElementSize...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    		if err := r.UnreadByte(); err == nil {
    			t.Errorf("n = %d: expected error on UnreadByte", n)
    		}
    	}
    }
    
    func TestUnreadByteOthers(t *testing.T) {
    	// A list of readers to use in conjunction with UnreadByte.
    	var readers = []func(*Reader, byte) ([]byte, error){
    		(*Reader).ReadBytes,
    		(*Reader).ReadSlice,
    		func(r *Reader, delim byte) ([]byte, error) {
    			data, err := r.ReadString(delim)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top