Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for Interpret (1.43 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

            result.assertHasErrorOutput("Reason: A property of type '$elementType' annotated with @Input cannot determine how to interpret the file.")
            result.assertHasErrorOutput("Possible solutions:")
            result.assertHasErrorOutput("1. Annotate with @InputFile for regular files.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. 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)
  10. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints.
      // +optional
      optional bool ready = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top