Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Display (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        private
        fun reportUniqueValueSourceInput(trace: PropertyTrace, displayName: String?, typeName: String) {
            // We assume different types won't ever produce identical display names
            if (reportedValueSources.add(displayName ?: typeName)) {
                reportValueSourceInput(trace, displayName, typeName)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/go-version/LICENSE

         non-exclusive license:
    
         a. under intellectual property rights (other than patent or trademark)
            Licensable by such Contributor to use, reproduce, make available,
            modify, display, perform, distribute, and otherwise exploit its
            Contributions, either on an unmodified basis, with Modifications, or as
            part of a Larger Work; and
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		when showing the package's top-level documentation.
    //	-short
    //		One-line representation for each symbol.
    //	-src
    //		Show the full source code for the symbol. This will
    //		display the full Go source of its declaration and
    //		definition, such as a function definition (including
    //		the body), type declaration or enclosing const
    //		block. The output may therefore include unexported
    //		details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    		if pos := strings.Index(fn, "."); pos >= 0 {
    			fn = fn[pos+1:]
    		}
    		s += fmt.Sprintf("call to %s:", fn)
    	} else {
    		s += "indirect call:"
    	}
    
    	// Sort variable names for display. Variables aren't in any particular order, and
    	// the order can change by architecture, particularly with differences in regabi.
    	var names []string
    	for j, n := range lv.vars {
    		if live.Get(int32(j)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/time/format.go

    	switch loc := t.Location(); loc {
    	case UTC, nil:
    		buf = append(buf, "time.UTC"...)
    	case Local:
    		buf = append(buf, "time.Local"...)
    	default:
    		// there are several options for how we could display this, none of
    		// which are great:
    		//
    		// - use Location(loc.name), which is not technically valid syntax
    		// - use LoadLocation(loc.name), which will cause a syntax error when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Build logic like the above example creates challenges in resolving declared dependencies, as reporting tools will display this dependency as if the user declared the version as "2.0", even though they never did.
    Instead, the build logic can avoid iteration and mutation by declaring a `preferred` version constraint on the dependency's coordinates.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        OptionalAttr<TypeAttr>:$effective_hidden_scale_intermediate
      );
    
      let results = (outs AnyTensor:$output);
    
      // TODO(fengliuai): customize printer and parser to not display
      // empty region.
      let regions = (region AnyRegion:$internal);
    
      let hasOptions = 1;
    
      let hasCanonicalizer = 1;
    
      let hasVerifier = 1;
    
      let extraClassDeclaration = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyReportTask.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.diagnostics;
    
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Displays the dependency tree for a project. An instance of this type is used when you
     * execute the {@code dependencies} task from the command-line.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 1008 bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - Certain `requestBody` parameters in the OpenAPI `v3` are now correctly marked as required. ([#120735](https://github.com/kubernetes/kubernetes/pull/120735), [@Jefftree](https://github.com/Jefftree))
    - Changed `kubectl help` to display basic details for subcommands from plugins. ([#116752](https://github.com/kubernetes/kubernetes/pull/116752), [@xvzf](https://github.com/xvzf))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. RELEASE.md

    *   Changed references to LIBXSMM to use version 1.8.1.
    *   TensorFlow Debugger (tfdbg):
        *   Display summaries of numeric tensor values with the `-s` flag to command
            `print_tensor` or `pt`.
        *   Display feed values with the `print_feed` or `pf` command and clickable
            links in the curses UI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top