Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 279 for setDescription (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables_test_pass.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(MarkInitializedVariablesTestPass)
    
      StringRef getArgument() const final {
        return "tf-saved-model-mark-initialized-variables-test";
      }
    
      StringRef getDescription() const final {
        return "Mark variables as initialized or not.";
      }
    
      void runOnOperation() override {
        TF::test_util::FakeSession session;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-war/src/main/webapp/index.jsp

    <%@ page import="webinar.*" %>
    <html>
    <body>
    <h2>The webinar says: <%=new Webinar().getDescription()%></h2>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 123 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

                writer.write(" ");
                writer.write(input.getType() == null ? "<untyped>" : input.getType());
                if (input.getDescription() != null) {
                    writer.write(" ");
                    writer.write("(");
                    writer.write(input.getDescription());
                    writer.write(")");
                }
                if (!input.isBound()) {
                    writer.write(" ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithNestedParent/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleNoBackReferences/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithRemoteParent/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/flatmultimodule/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleNoBackReferences/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithNestedParent/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
Back to top