Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 207 for Interpret (0.12 sec)

  1. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    ! go run -mod=readonly ../../pkg/mod/rsc.io/fortune@v1.0.0
    stderr '^missing go\.sum entry for module providing package rsc\.io/fortune; to add:\n\tgo mod download rsc\.io/fortune$'
    cd ..
    rm tmp
    
    
    # 'go run' does not interpret @version arguments after the first.
    go run example.com/cmd/a@v1.0.0 example.com/doesnotexist@v1.0.0
    stdout '^a@v1.0.0$'
    
    
    # 'go run pkg@version' succeeds when -mod=readonly is set explicitly.
    # Verifies #43278.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

            assertThat(
                interpret(Program.Plugins(fragment("plugins", pluginsBlock))),
                equalTo(
                    PluginsBlockInterpretation.Static(specs.asList())
                )
            )
        }
    
        private
        fun assertDynamicInterpretationOf(pluginsBlock: String, reason: String) {
            assertThat(
                interpret(Program.Plugins(fragment("plugins", pluginsBlock))),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

                    nonPublic = "foo"
                }
            """
            fails(":printTestSoftwareTypeExtensionImplConfiguration")
    
            then:
            failure.assertThatCause(Matchers.containsString("Failed to interpret the declarative DSL file"))
            failure.assertThatCause(Matchers.containsString("unresolved reference 'nonPublic'"))
        }
    
        def 'can declare and configure a custom software type from a parent class'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/internal/gover/gover.go

    func Parse(x string) Version {
    	var v Version
    
    	// Parse major version.
    	var ok bool
    	v.Major, x, ok = cutInt(x)
    	if !ok {
    		return Version{}
    	}
    	if x == "" {
    		// Interpret "1" as "1.0.0".
    		v.Minor = "0"
    		v.Patch = "0"
    		return v
    	}
    
    	// Parse . before minor version.
    	if x[0] != '.' {
    		return Version{}
    	}
    
    	// Parse minor version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Queues.java

       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
       * @return the number of elements transferred
       * @throws InterruptedException if interrupted while waiting
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # "runtime/cgo" would always be handled with internal linking. This caused
    # issues when users included odd/unusual flags (ex: -fplugin, -flto)
    # in CGO_CFLAGS, causing the Go linker to have to read and interpret
    # non-standard host objects.
    #
    # As of 1.21 we continue to use internal linking for programs whose
    # CGO use comes only from stdlib packages in the absence of any flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. cmd/warm-backend-azure.go

    	bucket := ""
    	object := ""
    	if len(params) >= 1 {
    		bucket = params[0]
    	}
    	if len(params) == 2 {
    		object = params[1]
    	}
    
    	azureErr, ok := err.(azblob.StorageError)
    	if !ok {
    		// We don't interpret non Azure errors. As azure errors will
    		// have StatusCode to help to convert to object errors.
    		return err
    	}
    
    	serviceCode := string(azureErr.ServiceCode())
    	statusCode := azureErr.Response().StatusCode
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/SignedBytes.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Arrays;
    import java.util.Comparator;
    
    /**
     * Static utility methods pertaining to {@code byte} primitives that interpret values as signed. The
     * corresponding methods that treat the values as unsigned are found in {@link UnsignedBytes}, and
     * the methods for which signedness is not an issue are in {@link Bytes}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  9. src/internal/trace/base.go

    	switch v {
    	case version.Go122:
    		return e.args[len(go122.Specs()[e.typ].Args)-1:]
    	}
    	panic(fmt.Sprintf("unsupported version: go 1.%d", v))
    }
    
    // evTable contains the per-generation data necessary to
    // interpret an individual event.
    type evTable struct {
    	freq    frequency
    	strings dataTable[stringID, string]
    	stacks  dataTable[stackID, stack]
    	pcs     map[uint64]frame
    
    	// extraStrings are strings that get generated during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        is determined by TPU program compilation, so this pass does not include how
        to reformat the variables, but only inserts general TPUReshardVariablesOps in
        proper places, and TPUReshardVariablesOps interpret the compilation.
    
        The core idea of this optimization is to keep track of the formatting state
        of variables, and when the next desired state does not change, it can avoid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top