Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,317 for Using$ (0.23 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

      }
    
      protected Collection<Method> suppressForConcurrentSkipListSetWithComparator() {
        return Collections.emptySet();
      }
    
      public Test testsForEmptySet() {
        return SetTestSuiteBuilder.using(
                new TestStringSetGenerator() {
                  @Override
                  public Set<String> create(String[] elements) {
                    return Collections.emptySet();
                  }
                })
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftCompilerDetectingApp.groovy

                #if swift(>=5.0)
                    print("Compiled using Swift 5.x compiler")
                #elseif swift(>=4.0)
                    print("Compiled using Swift 4.x compiler")
                #elseif swift(>=3.0)
                    print("Compiled using Swift 3.x compiler")
                #else
                    print("Compiled using unknown compiler")
                #endif
            """)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskReplacementIntegrationTest.groovy

            succeeds 'help'
            outputDoesNotContain(":foo is a First")
            outputContains(":foo is a Second")
    
            where:
            description               | api
            "using replace()"         | 'replace("foo", Second)'
            "using create(overwrite)" | 'create(name: "foo", type: Second, overwrite: true)'
        }
    
        def "throws exception when replacing an unrealized task a second time when #description"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/build.gradle

    // tag::gradle-properties[]
    // Using the API, provides a lazy Provider<String>
    println providers.gradleProperty('gradlePropertiesProp').get()
    
    // Using Groovy dynamic names
    println gradlePropertiesProp
    println project.gradlePropertiesProp
    
    // Using Groovy dynamic array notation on `project`
    println project['gradlePropertiesProp']
    // end::gradle-properties[]
    
    abstract class PrintValue extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

      }
    
      unsigned num_attrs;
    };
    
    template <typename Derived>
    class TFRTypeImpl : public Type::TypeBase<Derived, TFRType, TFRTypeStorage> {
     public:
      using Base = Type::TypeBase<Derived, TFRType, TFRTypeStorage>;
      using TFRBase = TFRTypeImpl<Derived>;
      using Base::Base;
    
      static Derived get(ArrayRef<StringAttr> attrs, MLIRContext* context) {
        return Base::get(context, attrs);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

             * General purpose error text
             */
            Error
        }
    
        /**
         * Appends a character using the current style.
         *
         * @param c The character
         * @return this
         */
        @Override
        StyledTextOutput append(char c);
    
        /**
         * Appends a sequence of characters using the current style.
         *
         * @param csq The character sequence
         * @return this.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.cc

    namespace py = ::pybind11;
    
    namespace {
    
    using ::stablehlo::quantization::CalibrationOptions;
    using ::stablehlo::quantization::MinMaxValue;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::calibrator::CalibrationStatistics;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::RepresentativeDatasetFile;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_nowork.txt

    ! go work use
    stderr '^go: no go\.work file found\n\t\(run ''go work init'' first or specify path using GOWORK environment variable\)$'
    
    ! go work use .
    stderr '^go: no go\.work file found\n\t\(run ''go work init'' first or specify path using GOWORK environment variable\)$'
    
    ! go work edit
    stderr '^go: no go\.work file found\n\t\(run ''go work init'' first or specify path using GOWORK environment variable\)$'
    
    ! go work edit -go=1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 783 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

    using ::tensorflow::FunctionLibraryDefinition;
    using ::tensorflow::Graph;
    using ::tensorflow::GraphDef;
    using ::tensorflow::Node;
    using ::tensorflow::NodeDef;
    using ::tensorflow::OpRegistry;
    using ::tensorflow::SaverDef;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::RunPasses;
    using ::tensorflow::quantization::UnfreezeConstantsAndSaveVariables;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TableCollectionTest.java

        // Not testing rowKeySet() or columnKeySet() of Table.transformValues()
        // since the transformation doesn't affect the row and column key sets.
    
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
                        Table<String, Integer, Character> table =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top