Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fslock (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                              << "\n");
    
      // Find any return ops.
      SmallVector<func::ReturnOp, 4> return_ops;
      for (Block& block : func) {
        if (auto return_op = dyn_cast<func::ReturnOp>(block.getTerminator())) {
          return_ops.push_back(return_op);
        }
      }
    
      // Skip functions without a return, but don't flag as failure here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	if cfg.BuildN {
    		sh.ShowCmd(b.WorkDir, "%s || true", joinUnambiguously(cmdArgs))
    		return false
    	}
    
    	// gccCompilerID acquires b.exec, so do before acquiring lock.
    	compilerID, cacheOK := b.gccCompilerID(compiler[0])
    
    	b.exec.Lock()
    	defer b.exec.Unlock()
    	if b, ok := b.flagCache[key]; ok {
    		return b
    	}
    	if b.flagCache == nil {
    		b.flagCache = make(map[[2]string]bool)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    				if !target.IsAMD64() {
    					o = r.Add()
    				}
    				break
    			}
    
    			if target.IsElf() && target.IsARM() {
    				// On ELF ARM, the thread pointer is 8 bytes before
    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    				// ELF on ARM (or maybe Glibc on ARM); it is not
    				// related to the fact that our own TLS storage happens
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    				proxy, cb.req.Push,
    				"outbound|8080|v1|foo.com",
    				model.TrafficDirectionOutbound, "v1", "foo.com", 8080,
    				service, dr,
    			)
    			eps := eb.FromServiceEndpoints()
    			mu.Lock()
    			actual = eps
    			mu.Unlock()
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	sortEndpoints(actual)
    	if v := cmp.Diff(expected, actual, protocmp.Transform()); v != "" {
    		t.Fatalf("Expected (-) != actual (+):\n%s", v)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top