Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 131 for locations (0.26 sec)

  1. cmd/xl-storage.go

    func (s *xlStorage) IsOnline() bool {
    	return true
    }
    
    func (s *xlStorage) LastConn() time.Time {
    	return time.Time{}
    }
    
    func (s *xlStorage) IsLocal() bool {
    	return true
    }
    
    // Retrieve location indexes.
    func (s *xlStorage) GetDiskLoc() (poolIdx, setIdx, diskIdx int) {
    	return s.endpoint.PoolIdx, s.endpoint.SetIdx, s.endpoint.DiskIdx
    }
    
    func (s *xlStorage) Healing() *healingTracker {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. src/testing/testing.go

    // writes the inputs that caused the failure to a file in the directory
    // testdata/fuzz/<Name> within the package directory. This file later serves as
    // a seed input. If the file can't be written at that location (for example,
    // because the directory is read-only), the fuzzing engine writes the file to
    // the fuzz cache directory within the build cache instead.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    An op that merges the string-encoded memory config protos from all hosts.
      }];
    
      let arguments = (ins
        Arg<Variadic<TF_StrTensor>, [{String-encoded memory config protos containing metadata about
    the memory allocations reserved for TPUEmbedding across all hosts.}]>:$memory_configs
      );
    
      let results = (outs
        TF_StrTensor:$merged_memory_config
      );
    
      TF_DerivedOperandSizeAttr N = TF_DerivedOperandSizeAttr<0>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	}
    }
    
    // hasSmallRotate reports whether the architecture has rotate instructions
    // for sizes < 32-bit.  This is used to decide whether to promote some rotations.
    func hasSmallRotate(c *Config) bool {
    	switch c.arch {
    	case "amd64", "386":
    		return true
    	default:
    		return false
    	}
    }
    
    func supportsPPC64PCRel() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    
    		if !rescan {
    			break
    		}
    	}
    
    	pc += -pc & (FuncAlign - 1)
    	c.cursym.Size = pc
    
    	// lay out the code, emitting code and data relocations.
    
    	c.cursym.Grow(c.cursym.Size)
    
    	bp := c.cursym.P
    	var i int32
    	var out [5]uint32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // reverse ordering of compare instruction
    (LOCGR {c} x y (InvertFlags cmp)) => (LOCGR {c.ReverseComparison()} x y cmp)
    
    // replace load from same location as preceding store with copy
    (MOVDload  [off] {sym} ptr1 (MOVDstore  [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => x
    (MOVWload  [off] {sym} ptr1 (MOVWstore  [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => (MOVWreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    x="6" y="4" width="12" height="1"/><rect x="6" y="9" width="12" height="1"/><rect x="6" y="14" width="12" height="1"/><rect x="2" y="4" width="2" height="1"/><rect x="2" y="9" width="2" height="1"/><rect x="2" y="14" width="2" height="1"/></svg>',location:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	res = append(res, ps.virtualServiceIndex.exportedToNamespaceByGateway[name]...)
    	// Favor same-namespace Gateway routes, to give the "consumer override" preference.
    	// We do 2 iterations here to avoid extra allocations.
    	for _, vs := range ps.virtualServiceIndex.publicByGateway[gateway] {
    		if UseGatewaySemantics(vs) && vs.Namespace == proxyNamespace {
    			res = append(res, vs)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/os/os_test.go

    		t.Skipf("skipping: %v", err)
    	}
    
    	fi, err := Stat(dir)
    	if err != nil {
    		if IsNotExist(err) {
    			// The user's home directory has a well-defined location, but does not
    			// exist. (Maybe nothing has written to it yet? That could happen, for
    			// example, on minimal VM images used for CI testing.)
    			t.Log(err)
    			return
    		}
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (MOVDstore [off1] {sym1} (MOVWaddr [off2] {sym2} ptr) val mem) && canMergeSym(sym1,sym2) =>
    	(MOVDstore [off1+off2] {mergeSym(sym1,sym2)} ptr val mem)
    
    // replace load from same location as preceding store with zero/sign extension (or copy in case of full width)
    (MOVBload [off] {sym} ptr (MOVBstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVBreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top