Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 147 for 99$ (0.02 sec)

  1. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    				{p: 9, expected: 1},
    				{p: 10, expected: 1},
    				{p: 15, expected: 1},
    				{p: 19, expected: 1},
    				{p: 20, expected: 2},
    				{p: 89, expected: 8},
    				{p: 90, expected: 9},
    				{p: 99, expected: 9},
    				{p: 100, expected: 9},
    				{p: 110, expected: 9},
    			},
    		},
    		{
    			points: []helper.FunctionShapePoint{{Utilization: 0, Score: 2}, {Utilization: 40, Score: 10}, {Utilization: 100, Score: 0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        InputStream in = new ByteArrayInputStream(PRE_FILLED_100);
        // this results in toByteArrayInternal being called when the stream is actually exhausted
        byte[] b = ByteStreams.toByteArray(in, 99);
        assertThat(b).isEqualTo(PRE_FILLED_100);
      }
    
      public void testToByteArray_withSize_givenSizeTwoSmallerThanActual() throws IOException {
        InputStream in = new ByteArrayInputStream(PRE_FILLED_100);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	           d2:fc:d5:d7:e7:4b:7c:e1:f3:bc:72:3c:b1:f5:d4:db:71:ad:
    	           d8:a7:ad:ab:91:68:c9:16:0a:e9:76:ed:87:0f:83:24:cd:ab:
    	           c7:a4:16:3f:c6:7c:99:18:bb:b1:12:11:a4:a5:99:af:17:11:
    	           e7:b1
    	   -----BEGIN CERTIFICATE-----
    	   MIICqDCCAhGgAwIBAgIUcq4o+bd/FgqJp5yho4gVSyDr9bIwDQYJKoZIhvcNAQEF
    	   BQAwZTELMAkGA1UEBhMCVVMxETAPBgNVBAgMCE15IFN0YXRlMRAwDgYDVQQHDAdN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/tables.go

    	96:  {want: 0x461, have: 0x139, distance: 0xa, oneway: true},
    	97:  {want: 0x467, have: 0x3e2, distance: 0xa, oneway: true},
    	98:  {want: 0x46f, have: 0x139, distance: 0xa, oneway: true},
    	99:  {want: 0x476, have: 0x3e2, distance: 0xa, oneway: true},
    	100: {want: 0x3883, have: 0x139, distance: 0xa, oneway: true},
    	101: {want: 0x480, have: 0x139, distance: 0xa, oneway: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. test/loopbce.go

    			a[j] = 0   // ERROR "Proved IsInBounds$"
    			a[j+1] = 0 // FIXME: this boundcheck should be eliminated
    			a[j+2] = 0
    		}
    	}
    	return a
    }
    
    func d3(a [100]int) [100]int {
    	for i := 0; i <= 99; i++ { // ERROR "Induction variable: limits \[0,99\], increment 1$"
    		for j := 0; j <= i-1; j++ {
    			a[j] = 0
    			a[j+1] = 0 // ERROR "Proved IsInBounds$"
    			a[j+2] = 0
    		}
    	}
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. src/slices/slices_test.go

    	memcopy := Clone(mem)
    	s := mem[0:5] // there is 1 element beyond len(s), within cap(s)
    	copy := Clone(s)
    	original := s
    
    	// The new elements don't fit within cap(s), so Replace will allocate.
    	z := 99
    	s = Replace(s, 1, 3, &z, &z, &z, &z)
    
    	if want := []*int{&a, &z, &z, &z, &z, &d, &e}; !Equal(s, want) {
    		t.Errorf("Replace(%v, 1, 3, %v, %v, %v, %v) = %v, want %v", copy, &z, &z, &z, &z, s, want)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top