Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,004 for forPath (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/dump/dump.go

    // The output may change over time, so for guaranteed output please take more direct control
    func Pretty(a interface{}) string {
    	return prettyPrintConfig.Sdump(a)
    }
    
    // ForHash keeps the original Spew.Sprintf format to ensure the same checksum
    func ForHash(a interface{}) string {
    	return prettyPrintConfigForHash.Sprintf("%#v", a)
    }
    
    // OneLine outputs the object in one line
    func OneLine(a interface{}) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/debug/dwarf/const.go

    	formFlag        format = 0x0C
    	formSdata       format = 0x0D
    	formStrp        format = 0x0E
    	formUdata       format = 0x0F
    	formRefAddr     format = 0x10
    	formRef1        format = 0x11
    	formRef2        format = 0x12
    	formRef4        format = 0x13
    	formRef8        format = 0x14
    	formRefUdata    format = 0x15
    	formIndirect    format = 0x16
    	// The following are new in DWARF 4.
    	formSecOffset   format = 0x17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

        }
    
        /**
         * Specifies different formats for reporting a failure of {@link #assertOutputContains(String)}.
         */
        public enum ComparisonFailureFormat {
            /**
             * The new format, which should be aide in quickly finding small differences for comparisons spanning multiple lines.
             */
            LINEWISE,
    
            /**
             * GitHub Patch format.  This is the format used by the GitHub diff viewer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    void AddStablehloQuantToIntPasses(OpPassManager& pm);
    
    // Processes tensors with NCHW format (== (batch, channel, height, weight)) by
    // converting them to NHWC formats along with extra optimizations such as
    // constant folding the transpose->convolution pattern. This is useful when
    // downstream pipeline (e.g. XLA) is more optimized when accepting NHWC formats.
    void AddProcessNchwTensorPasses(OpPassManager& pm);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/README.md

    your own proto definitions. It is better to store Kubernetes objects as byte
    arrays, in the wire format, which is self-describing. This permits you to use
    either JSON or binary (proto) wire formats without code changes. It will be
    difficult for you to operate on both Custom Resources and built-in types
    otherwise.
    
    ## Compatibility
    
    Branches track Kubernetes branches and are compatible with that repo.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

                    writeObject.forEach { method ->
                        method.invoke(value, recordingObjectOutputStream)
                    }
                }
        }
    
        internal
        object ReadObjectEncoding : Encoding {
            override suspend fun WriteContext.encode(value: Any) {
                encodePreservingIdentityOf(value) {
                    writeEnum(Format.ReadObject)
                    encodeBean(value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CaseFormat.java

      /**
       * Converts the specified {@code String str} from this format to the specified {@code format}. A
       * "best effort" approach is taken; if {@code str} does not conform to the assumed format, then
       * the behavior of this method is undefined but we make a reasonable effort at converting anyway.
       */
      public final String to(CaseFormat format, String str) {
        checkNotNull(format);
        checkNotNull(str);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginRequestApplicator.java

            classLoaderScope.export(scriptHandler.getInstrumentedScriptClassPath());
            pluginDependencies.getAdditionalClassloaders().forEach(classLoaderScope::export);
            classLoaderScope.lock();
    
            // Apply the plugins
            pluginApplyActions.forEach(action -> action.apply(target));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 04:49:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

                }
            }
        }
    
        public String format(long size) {
            return format(size, null);
        }
    
        public String format(long size, ScaleUnit unit) {
            return format(size, unit, false);
        }
    
        public String format(long size, ScaleUnit unit, boolean omitSymbol) {
            StringBuilder sb = new StringBuilder();
            format(sb, size, unit, omitSymbol);
            return sb.toString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Generate report in DOT format and postprocess with dot
    	"gif": {report.Dot, invokeDot("gif"), awayFromTTY("gif"), false, "Outputs a graph image in GIF format", reportHelp("gif", false, true)},
    	"pdf": {report.Dot, invokeDot("pdf"), awayFromTTY("pdf"), false, "Outputs a graph in PDF format", reportHelp("pdf", false, true)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top