Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for a$b (0.09 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    //
    // Argument comparison isn't reflexitive, so care must be taken.
    // a is the argument type as found in optab, b is the argument as
    // fitted by aclass.
    func cmp(a int, b int) bool {
    	if a == b {
    		return true
    	}
    	switch a {
    
    	case C_SPR:
    		if b == C_LR || b == C_CTR {
    			return true
    		}
    
    	case C_U1CON:
    		return cmp(C_ZCON, b)
    	case C_U2CON:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <b>First Parameter</b></td><td><b>Second Parameter</b></td><td><b>Result</b></td></tr>
     *
     * <tr><td width="20%"><code>
     *  smb1://host/share/a/b/
     * </code></td><td width="20%"><code>
     *  c/d/
     * </code></td><td><code>
     *  smb1://host/share/a/b/c/d/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://host/share/foo/bar/
     * </code></td><td width="20%"><code>
     *  /share2/zig/zag
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    			},
    			wantRmFinalizers: 4,
    			wantStatusUpdates: []batch.JobStatus{
    				{
    					Active: 1,
    					UncountedTerminatedPods: &batch.UncountedTerminatedPods{
    						Failed: []types.UID{"a", "b", "c"},
    					},
    				},
    				{
    					Active:                  1,
    					Failed:                  3,
    					UncountedTerminatedPods: &batch.UncountedTerminatedPods{},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    			closer.Close()
    		}
    	})
    }
    
    func toSnake(camel string) (snake string) {
    	var b strings.Builder
    	l := len(camel)
    	for i, v := range camel {
    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    		// add underscore if last letter is capital letter
    		// add underscore when previous letter is lowercase
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    #else
    #define ROL8(R, T) ROL(8, R, T)
    #endif
    
    #define chachaQR(A, B, C, D, T) \
    	PADDD B, A; PXOR A, D; ROL16(D, T) \
    	PADDD D, C; PXOR C, B; MOVO B, T; PSLLL $12, T; PSRLL $20, B; PXOR T, B \
    	PADDD B, A; PXOR A, D; ROL8(D, T) \
    	PADDD D, C; PXOR C, B; MOVO B, T; PSLLL $7, T; PSRLL $25, B; PXOR T, B
    
    #define chachaQR_AVX2(A, B, C, D, T) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	for _, a := range args {
    		s += fmt.Sprintf(" %v", DRconv(int(a)))
    	}
    	c.ctxt.Diag("illegal combination %v%v\n", p.As, s)
    	c.ctxt.Diag("prog: %v\n", p)
    	return nil
    }
    
    func cmp(a int, b int) bool {
    	if a == b {
    		return true
    	}
    	switch a {
    	case C_DCON:
    		if b == C_LCON {
    			return true
    		}
    		fallthrough
    	case C_LCON:
    		if b == C_ZCON || b == C_SCON || b == C_UCON || b == C_ADDCON || b == C_ANDCON {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    			in: &security_beta.AuthorizationPolicy{
    				Rules: []*security_beta.Rule{
    					{
    						When: []*security_beta.Condition{
    							{
    								Key:    "source.ip",
    								Values: []string{"a.b.c.d"},
    							},
    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "condition-notValue-invalid",
    			in: &security_beta.AuthorizationPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    // hasGoFiles reports whether dir contains any files with names ending in .go.
    // For a vendor check we must exclude directories that contain no .go files.
    // Otherwise it is not possible to vendor just a/b/c and still import the
    // non-vendored a/b. See golang.org/issue/13832.
    func hasGoFiles(dir string) bool {
    	files, _ := os.ReadDir(dir)
    	for _, f := range files {
    		if !f.IsDir() && strings.HasSuffix(f.Name(), ".go") {
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		}
    		defer res.Body.Close()
    		slurp, err := io.ReadAll(res.Body)
    		if err != nil {
    			t.Fatal(err)
    		}
    		return string(slurp)
    	}
    	a, b := get(), get()
    	if a != b {
    		t.Errorf("Failed to reuse connections between requests: %v vs %v", a, b)
    	}
    }
    
    // Test that we validate the Host header.
    // Issue 11206 (invalid bytes in Host) and 13624 (Host present in HTTP/1.1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    		if value != expected.value {
    			t.Errorf("Test case: %s, expected: %v, actual: %v", input, expected.value, value)
    		}
    	}
    }
    
    func TestCompareThresholdValue(t *testing.T) {
    	testCases := []struct {
    		a, b  evictionapi.ThresholdValue
    		equal bool
    	}{
    		{
    			a: evictionapi.ThresholdValue{
    				Quantity: resource.NewQuantity(123, resource.BinarySI),
    			},
    			b: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top