Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for Interpret (0.23 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/suffix.go

    limitations under the License.
    */
    
    package resource
    
    import (
    	"strconv"
    )
    
    type suffix string
    
    // suffixer can interpret and construct suffixes.
    type suffixer interface {
    	interpret(suffix) (base, exponent int32, fmt Format, ok bool)
    	construct(base, exponent int32, fmt Format) (s suffix, ok bool)
    	constructBytes(base, exponent int32, fmt Format) (s []byte, ok bool)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	"github.com/fxamacker/cbor/v2"
    )
    
    type metaFactory interface {
    	// Interpret should return the version and kind of the wire-format of the object.
    	Interpret(data []byte) (*schema.GroupVersionKind, error)
    }
    
    type defaultMetaFactory struct{}
    
    func (mf *defaultMetaFactory) Interpret(data []byte) (*schema.GroupVersionKind, error) {
    	var tm metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluator.kt

                is Program.Plugins -> optimize(stage1)
                else -> null
            }
    
        private
        fun optimize(program: Program.Plugins): ApplyPluginRequests? =
            when (val interpretation = interpret(program)) {
                is PluginsBlockInterpretation.Static -> {
                    ApplyPluginRequests(interpretation.plugins, program)
                }
    
                is PluginsBlockInterpretation.Dynamic -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. src/internal/trace/raw/doc.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package raw provides an interface to interpret and emit Go execution traces.
    It can interpret and emit execution traces in its wire format as well as a
    bespoke but simple text format.
    
    The readers and writers in this package perform no validation on or ordering of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/offset_buffer.h

    #include <cstdint>
    
    namespace tflite {
    
    // Check if the model is using custom_option_offset to store custom op
    // buffers. When this field is not explicitly set by the user, then FlatBuffer
    // will omit the field and interpret this as 0, to ensure this field is
    // populated. The flatbuffer exporter will always set it to 1, and it's also not
    // a valid buffer offset value. So it's only valid when it's > 1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 04 01:07:10 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gotoolchain_modcmds.txt

    # required by its dependencies, the commands that fetch and diagnose the module
    # graph (such as 'go mod graph' and 'go mod verify') should fail explicitly:
    # they can't interpret the graph themselves, and they aren't allowed to update
    # the go.mod file to record a specific, stable toolchain version that can.
    
    ! go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

         */
        private static OutputStream wrapOutputStream(final OutputStream stream, int fileno) {
    
            // If the jansi.passthrough property is set, then don't interpret
            // any of the ansi sequences.
            if (Boolean.getBoolean("jansi.passthrough")) {
                return stream;
            }
    
            // If the jansi.strip property is set, then we just strip the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

                        .severity(Severity.ERROR)
                        .details("A property of type '" + ModelType.of(valueType).getDisplayName() + "' annotated with @Input cannot determine how to interpret the file")
                        .solution("Annotate with @InputFile for regular files")
                        .solution("Annotate with @InputFiles for collections of files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_commit.txt

    grep 'rsc.io/quote v0.0.0-20180214005840-23179ee8a569' go.mod
    
    # but as commit should record as v1.5.1
    go get rsc.io/quote@23179ee8
    grep 'rsc.io/quote v1.5.1' go.mod
    
    # go mod edit -require does not interpret commits
    go mod edit -require rsc.io/quote@23179ee
    grep 'rsc.io/quote 23179ee' go.mod
    
    # but other commands fix them
    go list -m -mod=mod all
    grep 'rsc.io/quote v1.5.1' go.mod
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildFile.java

     * the particular phase referencing this object, e.g.:
     *
     * - {@link PBXSourcesBuildPhase } may read <code>{"COMPILER_FLAGS": "-foo"}</code> and interpret
     * that this file should be compiled with the additional flag {@code "-foo" }.
     */
    public class PBXBuildFile extends PBXProjectItem {
        private final PBXReference fileRef;
        private Optional<NSDictionary> settings;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top