Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for tc (0.03 sec)

  1. src/time/time.go

    func (t Time) Compare(u Time) int {
    	var tc, uc int64
    	if t.wall&u.wall&hasMonotonic != 0 {
    		tc, uc = t.ext, u.ext
    	} else {
    		tc, uc = t.sec(), u.sec()
    		if tc == uc {
    			tc, uc = int64(t.nsec()), int64(u.nsec())
    		}
    	}
    	switch {
    	case tc < uc:
    		return -1
    	case tc > uc:
    		return +1
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    3,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594\tc-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811\tc-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079\tc2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066\tc-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    			clientErr := Client(c, cConfig).Handshake()
    			c.Close()
    
    			if tc.expectedErr == "" && clientErr != nil {
    				t.Fatalf("unexpected err: %s", clientErr)
    			} else if clientErr != nil && tc.expectedErr != clientErr.Error() {
    				t.Fatalf("unexpected err: got %q, want %q", clientErr, tc.expectedErr)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    			out:  `Get "http://user:***@dummy.faketld/": dummy impl`,
    		},
    	}
    	for _, tC := range testCases {
    		t.Run(tC.desc, func(t *testing.T) {
    			_, err := client.Get(tC.in)
    			if err.Error() != tC.out {
    				t.Errorf("Unexpected output for %q: expected %q, actual %q",
    					tC.in, tC.out, err.Error())
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			got := route.SortVHostRoutes(tc.in)
    			if !reflect.DeepEqual(tc.expected, got) {
    				t.Errorf("SortVHostRoutes: \n")
    				t.Errorf("got: \n")
    				for _, g := range got {
    					t.Errorf("%v\n", g.Match.PathSpecifier)
    				}
    				t.Errorf("want: \n")
    				for _, g := range tc.expected {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
    
        @SuppressWarnings ( "deprecation" )
        private static boolean isExternalAuth ( CIFSContext tc, NtlmPasswordAuthenticator npa ) {
            return npa instanceof jcifs.smb.NtlmPasswordAuthentication && ( (NtlmPasswordAuthentication) npa ).areHashesExternal()
                    && tc.getConfig().getDefaultPassword() != null;
        }
    
    
        boolean logoff ( boolean inError, boolean inUse ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

      - name: auto
        port: 81
      - name: tcp
        port: 82
      - name: tls
        port: 83
      - name: https
        port: 84`
    
    	type tc struct {
    		call     simulation.Call
    		expected string
    	}
    	calls := []simulation.Expect{}
    	for _, call := range []tc{
    		{call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local"}, expected: "alias"},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			requestRV:        "0",
    			expectResponseRV: secondNonConsistentReadRV,
    		},
    	}
    	for _, tc := range tcs {
    		t.Run(tc.name, func(t *testing.T) {
    			out := &example.PodList{}
    			opts := storage.ListOptions{
    				ResourceVersion: tc.requestRV,
    				Predicate:       storage.Everything,
    			}
    			err = store.GetList(ctx, "/pods/empty", opts, out)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // run in parallel with each other, and only with each other, regardless of
    // other top-level tests that may be defined:
    //
    //	func TestGroupedParallel(t *testing.T) {
    //	    for _, tc := range tests {
    //	        tc := tc // capture range variable
    //	        t.Run(tc.Name, func(t *testing.T) {
    //	            t.Parallel()
    //	            ...
    //	        })
    //	    }
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    					t.Fatalf("unexpected error: %s", err)
    				}
    				if !reflect.DeepEqual(records, expected) {
    					t.Error("Unexpected record set")
    				}
    			},
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, tc.f)
    	}
    
    }
    
    func TestNullMX(t *testing.T) {
    	fake := fakeDNSServer{
    		rh: func(n, _ string, q dnsmessage.Message, _ time.Time) (dnsmessage.Message, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top