Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,876 for pzero (0.05 sec)

  1. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       * first decrementing to zero, and then removing. putIfAbsent or replace could observe the
       * intermediate zero-state. Ways we could deal with this are:
       *
       * - Don't define any of the ConcurrentMap operations. This is the current state of affairs.
       *
       * - Define putIfAbsent and replace as treating zero and absent identically (as currently
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue20227.go

    package p
    
    var _ = 1 / 1e-600000000i  // ERROR "division by zero"
    var _ = 1i / 1e-600000000  // ERROR "division by zero"
    var _ = 1i / 1e-600000000i // ERROR "division by zero"
    
    var _ = 1 / (1e-600000000 + 1e-600000000i)  // ERROR "division by zero"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 565 bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/BiMapRemoveTester.java

      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveKeyRemovesFromInverse() {
        getMap().remove(k0());
        expectMissing(e0());
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveKeyFromKeySetRemovesFromInverse() {
        getMap().keySet().remove(k0());
        expectMissing(e0());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java

      }
    
      // retainAll(empty)
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(ZERO)
      public void testRetainAll_emptyPreviouslyEmpty() {
        expectReturnsFalse(empty);
        expectUnchanged();
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_REMOVE)
      @CollectionSize.Require(ZERO)
      public void testRetainAll_emptyPreviouslyEmptyUnsupported() {
        expectReturnsFalseOrThrows(empty);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/const0.go

    	ui7 = ui2 * ui1
    	ui8 = ui3 / ui3
    	ui9 = ui3 % ui3
    
    	ui10 = 1 / 0 /* ERROR "division by zero" */
    	ui11 = ui1 / 0 /* ERROR "division by zero" */
    	ui12 = ui3 / ui0 /* ERROR "division by zero" */
    	ui13 = 1 % 0 /* ERROR "division by zero" */
    	ui14 = ui1 % 0 /* ERROR "division by zero" */
    	ui15 = ui3 % ui0 /* ERROR "division by zero" */
    
    	ui16 = ui2 & ui3
    	ui17 = ui2 | ui3
    	ui18 = ui2 ^ ui3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/syscall/asm_freebsd_riscv64.s

    	MOV	a1+8(FP), A0
    	MOV	a2+16(FP), A1
    	MOV	a3+24(FP), A2
    	MOV	trap+0(FP), T0	// syscall entry
    	ECALL
    	BNE	T0, ZERO, err
    	MOV	A0, r1+32(FP)	// r1
    	MOV	A1, r2+40(FP)	// r2
    	MOV	ZERO, err+48(FP)	// errno
    	CALL	runtime·exitsyscall(SB)
    	RET
    err:
    	MOV	$-1, T0
    	MOV	T0, r1+32(FP)	// r1
    	MOV	ZERO, r2+40(FP)	// r2
    	MOV	A0, err+48(FP)	// errno
    	CALL	runtime·exitsyscall(SB)
    	RET
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy_test.go

    		},
    		{
    			name:        "v1, update, zero value, existing has zero, no error expected",
    			obj:         v1ObjFn(ptr.To(int32(0))),
    			old:         internalObjFn(0),
    			scheme:      v1SchemeFn(t),
    			errExpected: nil,
    		},
    		{
    			name:        "v1, update, non-zero value, existing has zero, no error expected",
    			obj:         v1ObjFn(ptr.To(int32(1))),
    			old:         internalObjFn(0),
    			scheme:      v1SchemeFn(t),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation_test.go

    			obj:  &fakeObject{},
    			want: "",
    		},
    		{
    			name: "interface, zero-value",
    			obj:  &fakeRemovedObject{removedMajor: 0, removedMinor: 0},
    			want: "",
    		},
    		{
    			name: "interface, non-zero major",
    			obj:  &fakeRemovedObject{removedMajor: 1, removedMinor: 0},
    			want: "1.0",
    		},
    		{
    			name: "interface, non-zero minor",
    			obj:  &fakeRemovedObject{removedMajor: 0, removedMinor: 1},
    			want: "0.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 11 20:04:19 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go

    func fd2path(fd int, buf []byte) (err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall(SYS_FD2PATH, uintptr(fd), uintptr(_p0), uintptr(len(buf)))
    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_plan9_386.go

    func fd2path(fd int, buf []byte) (err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall(SYS_FD2PATH, uintptr(fd), uintptr(_p0), uintptr(len(buf)))
    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
Back to top