Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for readability (0.14 sec)

  1. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

            performance-unnecessary-value-param,
            readability-avoid-const-params-in-decls,
            readability-const-return-type,
            readability-container-size-empty,
            readability-identifier-naming,
            readability-inconsistent-declaration-parameter-name,
            readability-misleading-indentation,
            readability-redundant-control-flow,
            readability-simplify-boolean-expr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. src/io/fs/format.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs
    
    import (
    	"time"
    )
    
    // FormatFileInfo returns a formatted version of info for human readability.
    // Implementations of [FileInfo] can call this from a String method.
    // The output for a file named "hello.go", 100 bytes, mode 0o644, created
    // January 1, 1970 at noon is
    //
    //	-rw-r--r-- 100 1970-01-01 12:00:00 hello.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

    import java.util.Map;
    import java.util.Properties;
    import java.util.TimeZone;
    
    /**
     * MavenBuildTimestamp
     */
    public class MavenBuildTimestamp {
        // ISO 8601-compliant timestamp for machine readability
        public static final String DEFAULT_BUILD_TIMESTAMP_FORMAT = "yyyy-MM-dd'T'HH:mm:ss'Z'";
    
        public static final String BUILD_TIMESTAMP_FORMAT_PROPERTY = "maven.build.timestamp.format";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/MavenBuildTimestamp.java

    import java.util.Map;
    import java.util.Properties;
    import java.util.TimeZone;
    
    /**
     * MavenBuildTimestamp
     */
    public class MavenBuildTimestamp {
        // ISO 8601-compliant timestamp for machine readability
        public static final String DEFAULT_BUILD_TIMESTAMP_FORMAT = "yyyy-MM-dd'T'HH:mm:ss'Z'";
    
        public static final String BUILD_TIMESTAMP_FORMAT_PROPERTY = "maven.build.timestamp.format";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

      }
    
      // Enable printing of debug information. If 'pretty_form' is set to true,
      // debug information is printed in a more readable 'pretty' form but this
      // pretty form is not parsable (so only for human readability).
      MlirDumpConfig& emit_location_information(bool pretty_form = false) {
        this->op_printing_flags.enableDebugInfo(/*enable=*/true, pretty_form);
        return *this;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/DefaultDeprecatedUsageProgressDetails.java

                sb.append(SystemProperties.getInstance().getLineSeparator());
            }
            deprecation.put("stackTrace", sb.toString());
            // the properties are wrapped to an enclosing map to improve the readability of the trace files
            return Collections.singletonMap("deprecation", deprecation);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/internal/sys/nih.go

    // it for low-level internal structures to avoid memory barriers in the
    // scheduler and the memory allocator where they are illegal or simply
    // inefficient. This mechanism is reasonably safe and does not compromise
    // the readability of the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/BuildableBackedProvider.java

        }
    
        @Nullable
        @Override
        public Class<T> getType() {
            return valueType;
        }
    
        @Override
        public ValueProducer getProducer() {
            // not a lambda for readability purposes.
            //noinspection Convert2Lambda
            return new ValueProducer() {
                @Override
                public void visitProducerTasks(Action<? super Task> visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:30 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/log/slog/example_custom_levels_test.go

    				// this demonstrates using a switch statement to rename levels. For
    				// maximum performance, the string values should be constants, but this
    				// example uses the raw strings for readability.
    				switch {
    				case level < LevelDebug:
    					a.Value = slog.StringValue("TRACE")
    				case level < LevelInfo:
    					a.Value = slog.StringValue("DEBUG")
    				case level < LevelNotice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/debugger/dumper.go

    	nodeInfos := make([]string, 0, len(dump.Nodes))
    	for name, nodeInfo := range dump.Nodes {
    		nodeInfos = append(nodeInfos, d.printNodeInfo(name, nodeInfo))
    	}
    	// Extra blank line added between node entries for readability.
    	logger.Info("Dump of cached NodeInfo", "nodes", strings.Join(nodeInfos, "\n\n"))
    }
    
    // dumpSchedulingQueue writes pods in the scheduling queue to the scheduler logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top