Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for sally (0.06 sec)

  1. staging/src/k8s.io/apimachinery/pkg/conversion/converter_test.go

    	}
    	if e, a := z.Baz, w.Baz; e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    
    	convertFn3 := func(in *A, out *C, s Scope) error {
    		return fmt.Errorf("C can't store an A, silly")
    	}
    	if err := c.RegisterUntypedConversionFunc(
    		(*A)(nil), (*C)(nil),
    		func(a, b interface{}, s Scope) error {
    			return convertFn3(a.(*A), b.(*C), s)
    		},
    	); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 06 06:28:24 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. hack/update-vendor-licenses.sh

      local find_maxdepth
      local find_names
      local -a local_files=()
    
      # Necessary to expand {}
      case ${type} in
          LICENSE) find_names=(-iname 'licen[sc]e*')
                   find_maxdepth=1
                   # Sadly inconsistent in the wild, but mostly license files
                   # containing copyrights, but no readme/notice files containing
                   # licenses (except to "see license file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/OptionalTest.java

      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeFine2() {
        FluentIterable<? extends Number> numbers = getSomeNumbers();
    
        // Sadly, the following is what users will have to do in some circumstances.
    
        @SuppressWarnings("unchecked") // safe covariant cast
        Optional<Number> first = (Optional<Number>) numbers.first();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_386.s

    	// SetLastError(0).
    	MOVL	$0, 0x34(FS)
    
    	MOVL	libcall_n(BX), CX
    
    	// Fast version, do not store args on the stack.
    	CMPL	CX, $0
    	JE	docall
    
    	// Copy args to the stack.
    	MOVL	CX, AX
    	SALL	$2, AX
    	SUBL	AX, SP			// room for args
    	MOVL	SP, DI
    	MOVL	libcall_args(BX), SI
    	CLD
    	REP; MOVSL
    
    docall:
    	// Call stdcall or cdecl function.
    	// DI SI BP BX are preserved, SP is not
    	CALL	libcall_fn(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    	if lbRange.max <= fairProp && fairProp <= ubRange.min { // no bounds matter
    		for idx := range classes {
    			ans[idx] = relativeItems[idx].target * fairProp
    		}
    		return ans, fairProp, nil
    	}
    	// Sadly, some bounds matter.
    	// We find the solution by sorting the bounds and considering progressively
    	// higher values of fairProp, starting from lbRange.min.
    	rap := (&relativeAllocProblem{items: relativeItems}).initIndices()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. src/crypto/tls/prf.go

    type finishedHash struct {
    	client hash.Hash
    	server hash.Hash
    
    	// Prior to TLS 1.2, an additional MD5 hash is required.
    	clientMD5 hash.Hash
    	serverMD5 hash.Hash
    
    	// In TLS 1.2, a full buffer is sadly required.
    	buffer []byte
    
    	version uint16
    	prf     func(result, secret, label, seed []byte)
    }
    
    func (h *finishedHash) Write(msg []byte) (n int, err error) {
    	h.client.Write(msg)
    	h.server.Write(msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("../..", simplifyPath("./.././../"));
      }
    
      /*
       * We co-opt some URI resolution tests for our purposes.
       * Some of the tests have queries and anchors that are a little silly here.
       */
    
      /** http://gbiv.com/protocols/uri/rfc/rfc2396.html#rfc.section.C.1 */
      public void testRfc2396Normal() {
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 11K bytes
    - Viewed (0)
  8. src/net/netip/fuzz_test.go

    	// Basic zero IPv4 address.
    	"0.0.0.0",
    	// Basic non-zero IPv4 address.
    	"192.168.140.255",
    	// IPv4 address in windows-style "print all the digits" form.
    	"010.000.015.001",
    	// IPv4 address with a silly amount of leading zeros.
    	"000001.00000002.00000003.000000004",
    	// 4-in-6 with octet with leading zero
    	"::ffff:1.2.03.4",
    	// Basic zero IPv6 address.
    	"::",
    	// Localhost IPv6.
    	"::1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables.go

    	out, err := runner.exec.Command(iptablesSaveCmd, "-t", string(table)).CombinedOutput()
    	if err != nil {
    		return false, fmt.Errorf("error checking rule: %v", err)
    	}
    
    	// Sadly, iptables has inconsistent quoting rules for comments. Just remove all quotes.
    	// Also, quoted multi-word comments (which are counted as a single arg)
    	// will be unpacked into multiple args,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/anames.go

    	"ROLW",
    	"RORB",
    	"RORL",
    	"RORQ",
    	"RORW",
    	"RORXL",
    	"RORXQ",
    	"ROUNDPD",
    	"ROUNDPS",
    	"ROUNDSD",
    	"ROUNDSS",
    	"RSM",
    	"RSQRTPS",
    	"RSQRTSS",
    	"SAHF",
    	"SALB",
    	"SALL",
    	"SALQ",
    	"SALW",
    	"SARB",
    	"SARL",
    	"SARQ",
    	"SARW",
    	"SARXL",
    	"SARXQ",
    	"SBBB",
    	"SBBL",
    	"SBBQ",
    	"SBBW",
    	"SCASB",
    	"SCASL",
    	"SCASQ",
    	"SCASW",
    	"SETCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top