Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 181 for Views (2.08 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider.views
    
    import org.gradle.api.provider.HasMultipleValues
    import org.gradle.api.provider.Provider
    import spock.lang.Specification
    
    abstract class AbstractHasMultiValuesPropertyCollectionViewTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. migrator.go

    	HasColumn(dst interface{}, field string) bool
    	RenameColumn(dst interface{}, oldName, field string) error
    	ColumnTypes(dst interface{}) ([]ColumnType, error)
    
    	// Views
    	CreateView(name string, option ViewOption) error
    	DropView(name string) error
    
    	// Constraints
    	CreateConstraint(dst interface{}, name string) error
    	DropConstraint(dst interface{}, name string) error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/MapPropertyMapViewTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider.views
    
    
    import org.gradle.api.provider.MapProperty
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class MapPropertyMapViewTest extends Specification {
        MapProperty<String, String> mapProperty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/MapPropertyMapView.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider.views;
    
    import org.gradle.api.provider.MapProperty;
    
    import javax.annotation.Nullable;
    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.AbstractMap;
    import java.util.AbstractSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMapGroovyView.java

    import groovy.lang.MissingPropertyException;
    import org.gradle.model.ModelMap;
    import org.gradle.util.internal.ClosureBackedAction;
    
    import static org.gradle.internal.Cast.uncheckedCast;
    
    /**
     * Used as the superclass for views for types that extend {@link org.gradle.model.ModelMap}. Mixes in Groovy DSL support.
     */
    // TODO - mix in Groovy support using bytecode decoration instead
    // TODO - validate closure parameters to check they are within bounds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

          TestSortedSetGenerator<E> delegate, Bound to, Bound from) {
        return using(new NavigableSetSubsetTestSetGenerator<E>(delegate, to, from));
      }
    
      /** Create a suite whose maps are descending views of other maps. */
      private TestSuite createDescendingSuite(
          FeatureSpecificTestSuiteBuilder<?, ? extends OneSizeTestContainerGenerator<Collection<E>, E>>
              parentBuilder) {
        TestSetGenerator<E> delegate =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/BiMap.java

       *     map entries may have been added to the bimap before the exception was thrown.
       */
      @Override
      void putAll(Map<? extends K, ? extends V> map);
    
      // Views
    
      /**
       * {@inheritDoc}
       *
       * <p>Because a bimap has unique values, this method returns a {@link Set}, instead of the {@link
       * java.util.Collection} specified in the {@link Map} interface.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    
    #include <string>
    
    #include "absl/log/log.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/common/case_format.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ModelSetModelProjectionTest.groovy

            set*.name == ['1', '2']
            set.toArray().collect { it.name } == ['1', '2']
            set.toArray(new NamedThing[2]).collect { it.name } == ['1', '2']
        }
    
        def "reuses element views"() {
            when:
            mutate {
                create { name = '1' }
                create { name = '2' }
            }
    
            then:
            def set = registry.realize(collectionPath, collectionType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Tables.java

       * {@code factory.get()} does.
       *
       * <p>Call this method only when the simpler factory methods in classes like {@link
       * HashBasedTable} and {@link TreeBasedTable} won't suffice.
       *
       * <p>The views returned by the {@code Table} methods {@link Table#column}, {@link
       * Table#columnKeySet}, and {@link Table#columnMap} have iterators that don't support {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top