Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for checkIn (0.27 sec)

  1. src/go/build/build.go

    					installgoroot.IncNonDefault()
    				}
    				p.PkgObj = ctxt.joinPath(p.Root, pkga)
    			}
    		}
    	}
    
    	// If it's a local import path, by the time we get here, we still haven't checked
    	// that p.Dir directory exists. This is the right time to do that check.
    	// We can't do it earlier, because we want to gather partial information for the
    	// non-nil *Package returned when an error occurs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	q := par.NewQueue(runtime.GOMAXPROCS(0))
    	for {
    		var disambiguateRoot sync.Map
    		for _, pkg := range pkgs {
    			if pkg.mod.Path == "" || pathIsRoot[pkg.mod.Path] {
    				// Lazy module loading will cause pkg.mod to be checked before any other modules
    				// that are only indirectly required. It is as unambiguous as possible.
    				continue
    			}
    			pkg := pkg
    			q.Add(func() {
    				skipModFile := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // objects.
    func gcMarkDone() {
    	// Ensure only one thread is running the ragged barrier at a
    	// time.
    	semacquire(&work.markDoneSema)
    
    top:
    	// Re-check transition condition under transition lock.
    	//
    	// It's critical that this checks the global work queues are
    	// empty before performing the ragged barrier. Otherwise,
    	// there could be global work that a P could take after the P
    	// has passed the ragged barrier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      for (int64_t index : forward_variable_inputs) {
        Value argument = loop_body_func.getArgument(index);
        // Uses of this argument should only be the return and the
        // TPUReplicateInputOp. This is checked by the loop above.
        Operation* input_ptr = nullptr;
        for (Operation* user : argument.getUsers()) {
          if (llvm::isa<TF::TPUReplicatedInputOp>(user)) {
            input_ptr = user;
            break;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		// So gostrings are handled the same way.
    
    		// This allows the MOVDload and MOVWload to be generated in more cases and
    		// eliminates some offset and alignment checking in the rules file.
    
    		fromAddr := obj.Addr{Type: obj.TYPE_MEM, Reg: v.Args[0].Reg()}
    		ssagen.AddAux(&fromAddr, v)
    
    		genAddr := false
    
    		switch fromAddr.Name {
    		case obj.NAME_EXTERN, obj.NAME_STATIC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * removed in one segment while checking another, in which case the table was never actually
         * empty at any point. (The sum ensures accuracy up through at least 1<<31 per-segment
         * modifications before recheck.)  Method containsValue() uses similar constructions for
         * stability checks.
         */
        long sum = 0L;
        Segment<K, V, E, S>[] segments = this.segments;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            "provider {[s1, s2]}" | { property().value(Providers.of(["s1, s2"])) } || "$collectionName(class ${String.name}, fixed(class ${ArrayList.name}, [s1, s2]))"
    
            // The following case abuses Groovy lax type-checking to put an invalid value into the property.
            "[provider {s1}]"     | { property().value([Providers.of("s1")]) }     || "$collectionName(class ${String.name}, [fixed(class ${String.name}, s1)])"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {
    			// See https://golang.org/issue/13841.
    			return true
    		}
    	}
    
    	return false
    }
    
    // testCPUProfile runs f under the CPU profiler, checking for some conditions specified by need,
    // as interpreted by matches, and returns the parsed profile.
    func testCPUProfile(t *testing.T, matches profileMatchFunc, f func(dur time.Duration)) *profile.Profile {
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		base.Fatalf("go: -insecure flag is no longer supported; use GOINSECURE instead")
    	}
    
    	modload.ForceUseModules = true
    
    	// Do not allow any updating of go.mod until we've applied
    	// all the requested changes and checked that the result matches
    	// what was requested.
    	modload.ExplicitWriteGoMod = true
    
    	// Allow looking up modules for import paths when outside of a module.
    	// 'go get' is expected to do this, unlike other commands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    // the existing in-memory requirements (rather than re-reading them from disk).
    //
    // LoadModFile checks the roots of the module graph for consistency with each
    // other, but unlike LoadModGraph does not load the full module graph or check
    // it for global consistency. Most callers outside of the modload package should
    // use LoadModGraph instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top