Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for L1 (0.06 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

            int p1, p2, l1, l2;
    
            // if unsure return this method returns true
    
            p1 = path1.lastIndexOf('/');
            p2 = path2.lastIndexOf('/');
            l1 = path1.length() - p1;
            l2 = path2.length() - p2;
    
            // anything with dots voids comparison
            if (l1 > 1 && path1.charAt(p1 + 1) == '.')
                return true;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	type expectedResult struct {
    		containerConfig *runtimeapi.LinuxContainerConfig
    		memoryLow       int64
    		memoryHigh      int64
    	}
    	l1, _ := m.generateLinuxContainerConfig(&pod1.Spec.Containers[0], pod1, new(int64), "", nil, true)
    	l2, _ := m.generateLinuxContainerConfig(&pod2.Spec.Containers[0], pod2, new(int64), "", nil, true)
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-HelloRetryRequest

    00000320  fe 6f 13 3a 83 b2 dc ac  01 b4 e6 ca 5c 9e 17 03  |.o.:........\...|
    00000330  03 00 99 d2 6f 24 aa 51  a7 3d 2d fa 18 57 8e 7c  |....o$.Q.=-..W.||
    00000340  43 4f da 6c 31 97 bb d7  6f 64 2a db 7c 76 41 11  |CO.l1...od*.|vA.|
    00000350  cc e9 0f ea e8 03 99 49  4e c4 2c 43 36 54 b9 61  |.......IN.,C6T.a|
    00000360  af d1 56 00 9a e4 f2 c2  6d cf e9 25 32 f5 34 b6  |..V.....m..%2.4.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/field/fe_test.go

    }
    
    // isInBounds returns whether the element is within the expected bit size bounds
    // after a light reduction.
    func isInBounds(x *Element) bool {
    	return bits.Len64(x.l0) <= 52 &&
    		bits.Len64(x.l1) <= 52 &&
    		bits.Len64(x.l2) <= 52 &&
    		bits.Len64(x.l3) <= 52 &&
    		bits.Len64(x.l4) <= 52
    }
    
    func TestMultiplyDistributesOverAdd(t *testing.T) {
    	multiplyDistributesOverAdd := func(x, y, z Element) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. test/escape2n.go

    }
    
    // a harmless forward jump
    func foo122() {
    	var i *int
    
    	goto L1
    L1:
    	i = new(int) // ERROR "new\(int\) does not escape$"
    	_ = i
    }
    
    // a backward jump, increases loopdepth
    func foo123() {
    	var i *int
    
    L1:
    	i = new(int) // ERROR "new\(int\) escapes to heap$"
    
    	goto L1
    	_ = i
    }
    
    func foo124(x **int) { // ERROR "x does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/order.go

    			// makes sure there is nothing too deep being copied.
    			l1 := o.safeExpr(n.X)
    			l2 := ir.DeepCopy(src.NoXPos, l1)
    			if l2.Op() == ir.OINDEXMAP {
    				l2 := l2.(*ir.IndexExpr)
    				l2.Assigned = false
    			}
    			l2 = o.copyExpr(l2)
    			r := o.expr(typecheck.Expr(ir.NewBinaryExpr(n.Pos(), n.AsOp, l2, n.Y)), nil)
    			as := typecheck.Stmt(ir.NewAssignStmt(n.Pos(), l1, r))
    			o.mapAssign(as)
    			o.popTemp(t)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      rule: self.all(l1, self.exists_one(l2, l1.name == l2.name))
                    - message: Combination of port, protocol and hostname must be unique
                        for each listener
                      rule: 'self.all(l1, self.exists_one(l2, l1.port == l2.port && l1.protocol
                        == l2.protocol && (has(l1.hostname) && has(l2.hostname) ? l1.hostname
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  8. src/compress/flate/deflate.go

    	}
    
    	// If we are given too much, cut it.
    	if len(b) > windowSize {
    		b = b[len(b)-windowSize:]
    	}
    	// Add all to window.
    	n := copy(d.window, b)
    
    	// Calculate 256 hashes at the time (more L1 cache hits)
    	loops := (n + 256 - minMatchLength) / 256
    	for j := 0; j < loops; j++ {
    		index := j * 256
    		end := index + 256 + minMatchLength - 1
    		if end > n {
    			end = n
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case 0:
    		result = "PLD"
    	case 1:
    		result = "PLI"
    	case 2:
    		result = "PST"
    	case 3:
    		return fmt.Sprintf("#%#02x", uint8(i))
    	}
    	switch prf_target {
    	case 0:
    		result += "L1"
    	case 1:
    		result += "L2"
    	case 2:
    		result += "L3"
    	case 3:
    		return fmt.Sprintf("#%#02x", uint8(i))
    	}
    	if prf_policy == 0 {
    		result += "KEEP"
    	} else {
    		result += "STRM"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    		},
    		{name: "escaped strings",
    			obj:    objs("l1\nl2", "l1\nl2"),
    			schema: schemas(stringType, stringType),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "'l1\\nl2'"),
    				"self.val1 == '''l1\nl2'''",
    			},
    		},
    		{name: "bytes",
    			obj:    objs("QUI=", "QUI="),
    			schema: schemas(byteType, byteType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top