Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 908 for Generator4 (0.29 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXObject.java

            return String.format("%s isa=%s gid=%s", super.toString(), isa(), getGlobalID());
        }
    
        /**
         * Generate a stable GID.
         */
        public final String generateGid(GidGenerator generator) {
            return generator.generateGid(isa(), stableHash());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/controller.h

    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_gen_lib.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    class Controller {
     public:
      explicit Controller(PathConfig path_config, Env* env = Env::Default());
      virtual ~Controller();
      const void WriteFile(const string& file_path, const SourceCode& code) const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class ArgTypeView {
     public:
      explicit ArgTypeView(ArgType arg_type);
    
      string TypeName() const;
    
     private:
      ArgType arg_type_;
    };
    
    }  // namespace cpp
    }  // namespace generator
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

        }
    
        private fun collectGeneratedTopLevelCallables(packageFqName: FqName, session: FirSession): Set<Name> {
            val generators = session.extensionService.declarationGenerators
    
            val generatedTopLevelDeclarations = generators
                .asSequence()
                .flatMap {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

    import spock.lang.Subject
    
    class TestDataGeneratorTest extends ResultSpecification {
        @Subject
        TestDataGenerator generator = new TestDataGenerator()
        StringWriter writer = new StringWriter()
    
        def "can generate cross version json data"() {
            when:
            generator.render(mockCrossVersionHistory(), writer)
    
            then:
            assert new JsonSlurper().parseText(writer.toString()) == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    CppConfig::CppConfig(const string &category, const string &name_space)
        : category(category),
          unit(str_util::Lowercase(category)),
          namespaces(absl::StrSplit(name_space, "::")) {}
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/ThumbnailQueue.java

            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "ThumbnailQueue [createdBy=" + createdBy + ", createdTime=" + createdTime + ", generator=" + generator + ", path=" + path
                    + "]";
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/common/source_code.h

    #ifndef TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_COMMON_SOURCE_CODE_H_
    #define TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_COMMON_SOURCE_CODE_H_
    
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    class SourceCode {
     public:
      string Render() const;
      void SetSpacesPerIndent(int spaces_per_indent) {
        spaces_per_indent_ = spaces_per_indent;
      }
    
      void AddLineWithIndent(const string &line);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/collect/testing/features/AndroidIncompatible.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    
    /**
     * Signifies that a test should not be run under Android. This annotation is respected only by our
     * Google-internal Android suite generators. Note that those generators also suppress any test
     * annotated with MediumTest or LargeTest.
     *
     * <p>For more discussion, see {@linkplain com.google.common.base.AndroidIncompatible the
     * documentation on another copy of this annotation}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AndroidIncompatible.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    
    /**
     * Signifies that a test should not be run under Android. This annotation is respected only by our
     * Google-internal Android suite generators. Note that those generators also suppress any test
     * annotated with MediumTest or LargeTest.
     *
     * <p>For more discussion, see {@linkplain com.google.common.base.AndroidIncompatible the
     * documentation on another copy of this annotation}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.6K bytes
    - Viewed (0)
Back to top