Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for vol6 (0.05 sec)

  1. src/os/os_windows_test.go

    	cmd := testenv.Command(t, "cmd", "/c", "mountvol", filepath.VolumeName(path), "/L")
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("%v: %v\n%s", cmd, err, out)
    	}
    	vol := strings.Trim(string(out), " \n\r")
    	return filepath.Join(vol, path[len(filepath.VolumeName(path)):])
    }
    
    func TestReadlink(t *testing.T) {
    	tests := []struct {
    		junction bool
    		dir      bool
    		drive    bool
    		relative bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^STATX_/ ||
    		$2 ~ /^RENAME/ ||
    		$2 ~ /^UBI_IOC[A-Z]/ ||
    		$2 ~ /^UTIME_/ ||
    		$2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||
    		$2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||
    		$2 ~ /^FSOPT_/ ||
    		$2 ~ /^WDIO[CFS]_/ ||
    		$2 ~ /^NFN/ ||
    		$2 !~ /^NFT_META_IIFTYPE/ &&
    		$2 ~ /^NFT_/ ||
    		$2 ~ /^NF_NAT_/ ||
    		$2 ~ /^XDP_/ ||
    		$2 ~ /^RWF_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    	ut.base = rt
    	ut.user = rt
    	// A type that is just a cycle of pointers (such as type T *T) cannot
    	// be represented in gobs, which need some concrete data. We use a
    	// cycle detection algorithm from Knuth, Vol 2, Section 3.1, Ex 6,
    	// pp 539-540.  As we step through indirections, run another type at
    	// half speed. If they meet up, there's a cycle.
    	slowpoke := ut.base // walks half as fast as ut.base
    	for {
    		pt := ut.base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	IsInlineMigratable(vol *v1.Volume) bool
    	IsMigratableIntreePluginByName(inTreePluginName string) bool
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    	GetCSINameFromInTreeName(pluginName string) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    					}
    					dispoff = pos
    					displen = 1
    					mem.Disp = int64(int8(src[pos]))
    					pos++
    				}
    
    				// In 64-bit, mod=0 rm=5 is PC-relative instead of just disp.
    				// See Vol 2A. Table 2-7.
    				if mode == 64 && mod == 0 && rm&7 == 5 {
    					if addrMode == 32 {
    						mem.Base = EIP
    					} else {
    						mem.Base = RIP
    					}
    				}
    			}
    
    			if segIndex >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. src/math/big/int.go

    // lehmerGCD sets z to the greatest common divisor of a and b,
    // which both must be != 0, and returns z.
    // If x or y are not nil, their values are set such that z = a*x + b*y.
    // See Knuth, The Art of Computer Programming, Vol. 2, Section 4.5.2, Algorithm L.
    // This implementation uses the improved condition by Collins requiring only one
    // quotient and avoiding the possibility of single Word overflow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        return success();
      }
    };
    
    // Approximates lgamma using Lanczos' approximation from
    // "A Precision Approximation of the Gamma Function". SIAM Journal on Numerical
    // Analysis series B. Vol. 1:
    // lgamma(z + 1) = (log(2) + log(pi)) / 2 + (z + 1/2) * log(t(z)) - t(z) + A(z)
    // t(z) = z + kLanczosGamma + 1/2
    // A(z) = kBaseLanczosCoeff
    //       + sigma(k = 1, n, kLanczosCoefficients[i] / (z +  k))
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    	case 66: // am* From, To, RegTo2 ==> am* RegTo2, From, To
    		rk := p.From.Reg
    		rj := p.To.Reg
    		rd := p.RegTo2
    
    		// See section 2.2.7.1 of https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html
    		// for the register usage constraints.
    		if rd == rj || rd == rk {
    			c.ctxt.Diag("illegal register combination: %v\n", p)
    		}
    		o1 = OP_RRR(atomicInst[p.As], uint32(rk), uint32(rj), uint32(rd))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_aws/fess.json

            },
            "hungarian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Helló", "világ", "keresés"]
            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess.json

            },
            "hungarian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Helló", "világ", "keresés"]
            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
Back to top