Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,836 for lacking (0.35 sec)

  1. ci/official/envs/linux_arm64

    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_arm64
    # Note: this is not set to "--cpu", because that changes the package name
    # to tensorflow_cpu. These ARM builds are supposed to have the name "tensorflow"
    # despite lacking Nvidia CUDA support.
    TFCI_BUILD_PIP_PACKAGE_ARGS="--repo_env=WHEEL_NAME=tensorflow"
    TFCI_DOCKER_ENABLE=1
    TFCI_DOCKER_IMAGE=us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/build-arm64:tf-2-16-multi-python
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 16:53:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ResolverCoordinatorTest.kt

                val action2 = resolverActionFor(env2, scriptDependencies())
                assertInstanceOf<ResolverAction.RequestNew>(action2)
            }
        }
    
        @Test
        fun `given an environment lacking a 'getScriptSectionTokens' entry, it will always try to retrieve the model`() {
    
            val environment = emptyMap<String, Any?>()
            val action1 = resolverActionFor(environment, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    go build example.net/need117
    ! go build example.net/bad114
    stderr '^bad114[/\\]bad114.go:15:2: duplicate method .?Y.?( .*)?$'
    
    
    # With a vendor/modules.txt lacking language versions, the world is topsy-turvy,
    # because we have to guess a uniform version for everything.
    #
    # We always guess Go 1.16, because that was the last version for which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    // in accordance to the total, if it's an int value it's treated as a simple value and
    // if it is a string value which is either non-numeric or numeric but lacking a trailing '%' it returns an error.
    func GetScaledValueFromIntOrPercent(intOrPercent *IntOrString, total int, roundUp bool) (int, error) {
    	if intOrPercent == nil {
    		return 0, errors.New("nil value for IntOrString")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    == Plugins published without {portal}
    
    If your plugin was published without using the <<java_gradle_plugin.adoc#java_gradle_plugin,Java Gradle Plugin Development Plugin>>, the publication will be lacking <<plugins.adoc#sec:plugin_markers,Plugin Marker Artifact>>, which is needed for <<plugins.adoc#sec:plugins_block,plugins DSL>> to locate the plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/likelyadjust.go

    					}
    					if f.pass.debug > 0 && !noprediction {
    						f.Warnl(b.Pos, "Branch prediction rule stay in loop%s",
    							describePredictionAgrees(b, prediction))
    					}
    
    				} else {
    					// Lacking loop structure, fall back on heuristics.
    					if certain[b1] > certain[b0] {
    						prediction = BranchLikely
    						if f.pass.debug > 0 {
    							describeBranchPrediction(f, b, certain[b0], certain[b1], prediction)
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/fmt.go

    			if i != 0 {
    				b.WriteByte(';')
    			}
    			b.WriteByte(' ')
    			switch {
    			case f.Sym == nil:
    				// Check first that a symbol is defined for this type.
    				// Wrong interface definitions may have types lacking a symbol.
    				break
    			case IsExported(f.Sym.Name):
    				sconv2(b, f.Sym, 'S', mode)
    			default:
    				if mode != fmtTypeIDName {
    					mode = fmtTypeID
    				}
    				sconv2(b, f.Sym, 'v', mode)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    		// of the Go toolchain may have arbitrary development changes on top of the
    		// commit reported by runtime.Version, or could be completely artificial due
    		// to lacking a `git` binary (like "devel gomote.XXXXX", as synthesized by
    		// "gomote push" as of 2022-06-15). (Release builds shouldn't have
    		// modifications, but we don't want to use a behavior for releases that we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. clause/locking.go

    	LockingOptionsNoWait     = "NOWAIT"
    )
    
    type Locking struct {
    	Strength string
    	Table    Table
    	Options  string
    }
    
    // Name where clause name
    func (locking Locking) Name() string {
    	return "FOR"
    }
    
    // Build build where clause
    func (locking Locking) Build(builder Builder) {
    	builder.WriteString(locking.Strength)
    	if locking.Table.Name != "" {
    		builder.WriteString(" OF ")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:32:56 UTC 2023
    - 773 bytes
    - Viewed (0)
  10. src/runtime/HACKING.md

    which must not race with a sleep or wakeup. Like `mutex`, blocking on
    a `note` blocks the M. However, there are different ways to sleep on a
    `note`:`notesleep` also prevents rescheduling of any associated G and
    P, while `notetsleepg` acts like a blocking system call that allows
    the P to be reused to run another G. This is still less efficient than
    blocking the G directly since it consumes an M.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top