Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for placeholders (0.58 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/logging/kotlin/build.gradle.kts

    logger.info("An info log message.")
    logger.debug("A debug log message.")
    logger.trace("A trace log message.") // Gradle never logs TRACE level logs
    // end::use-logger[]
    
    // tag::use-logger-placeholder[]
    logger.info("A {} log message", "info")
    // end::use-logger-placeholder[]
    
    // tag::use-println[]
    println("A message which is logged at QUIET level")
    // end::use-println[]
    
    // tag::capture-stdout[]
    logging.captureStandardOutput(LogLevel.INFO)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/end2end/custom_opdef.pbtxt

      input: "input1"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "input0"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "input1"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 27
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 21 11:04:11 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/partial-device-name.pbtxt

      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "input0"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "input1"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 27
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 26 20:48:36 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/11-language-change.yml

          default: 1
    
      - type: input
        id: author-other-languages-experience
        attributes:
          label: "Other Languages Experience"
          description: "What other languages do you have experience with?"
          placeholder: "Go, Python, JS, Rust"
        validations:
          required: false
    
      - type: checkboxes
        id: related-idea
        attributes:
          label: "Related Idea"
          options:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/profile/index.jsp

    						<c:set var="ph_old_password">
    							<la:message key="labels.profile.placeholder_old_password" />
    						</c:set>
    						<la:password property="oldPassword" class="form-control"
    									 placeholder="${ph_old_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text"><em class="fa fa-lock fa-fw"></span>
    						</div>
    					</div>
    					<div class="input-group mb-3">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-data-type-with-subtype.pbtxt

    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            unknown_rank: true
          }
        }
      }
    }
    node {
      name: "x"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_RESOURCE
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 00:16:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/saved_model.pbtxt

    meta_graphs: {
      meta_info_def: {
        tags: ["serve", "tpu"]
      }
      graph_def: {
        node: {
          name: "input0"
          op: "Placeholder"
          attr: {
            key: "dtype"
            value: {
              type: DT_STRING
            }
          }
        }
        node: {
          name: "input1"
          op: "Placeholder"
          attr: {
            key: "dtype"
            value: {
              type: DT_INT32
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 09 16:20:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/profile/index.jsp

    						<c:set var="ph_old_password">
    							<la:message key="labels.profile.placeholder_old_password" />
    						</c:set>
    						<la:password property="oldPassword" class="form-control"
    									 placeholder="${ph_old_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text"><em class="fa fa-lock fa-fw"></span>
    						</div>
    					</div>
    					<div class="input-group mb-3">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/PropertyReportTaskTest.groovy

            when:
            task.action()
    
            then:
            1 * renderer.addProperty('group', '')
            1 * renderer.addProperty('version', 'unspecified')
        }
    
        def "uses placeholder for rendering 'properties' property"() {
            when:
            task.action()
    
            then:
            1 * renderer.addProperty('properties', '{...}')
        }
    
        def "can show a single property"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_backslash/LICENSE

    LICENSE placeholder....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 23 04:14:15 UTC 2020
    - 21 bytes
    - Viewed (0)
Back to top