Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,146 for heal (0.04 sec)

  1. src/math/cmplx/isnan.go

    // license that can be found in the LICENSE file.
    
    package cmplx
    
    import "math"
    
    // IsNaN reports whether either real(x) or imag(x) is NaN
    // and neither is an infinity.
    func IsNaN(x complex128) bool {
    	switch {
    	case math.IsInf(real(x), 0) || math.IsInf(imag(x), 0):
    		return false
    	case math.IsNaN(real(x)) || math.IsNaN(imag(x)):
    		return true
    	}
    	return false
    }
    
    // NaN returns a complex “not-a-number” value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 598 bytes
    - Viewed (0)
  2. test/fixedbugs/issue35073b.go

    package main
    
    import (
    	"reflect"
    	"unsafe"
    )
    
    func main() {
    	n := 10                      // ERROR "moved to heap: n"
    	m := make(map[string]string) // ERROR "moved to heap: m" "make\(map\[string\]string\) escapes to heap"
    
    	_ = unsafe.Pointer(reflect.ValueOf(&n).Elem().UnsafeAddr()) // ERROR "inlining call"
    	_ = unsafe.Pointer(reflect.ValueOf(&m).Elem().Pointer())    // ERROR "inlining call"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:12:49 UTC 2023
    - 706 bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java

                return this;
            }
    
            public RequestDataContext get() {
                return method(Method.GET);
            }
    
            public RequestDataContext head() {
                return method(Method.HEAD);
            }
    
            public RequestDataContext post() {
                return method(Method.POST);
            }
    
            public RequestDataContext url(final String url) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue22458.go

    package main
    
    import "runtime"
    
    type node struct {
            next *node
    }
    
    var x bool
    
    func main() {
            var head *node
            for x {
                    head = &node{head}
            }
    
            runtime.KeepAlive(head)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 19:55:02 UTC 2017
    - 456 bytes
    - Viewed (0)
  5. test/fixedbugs/issue27557.go

    func f1() {
    	var t T
    	f := t.noescape // ERROR "t.noescape does not escape"
    	f()
    }
    
    func f2() {
    	var t T       // ERROR "moved to heap"
    	f := t.escape // ERROR "t.escape does not escape"
    	f()
    }
    
    func f3() {
    	var t T        // ERROR "moved to heap"
    	f := t.returns // ERROR "t.returns does not escape"
    	sink = f()
    }
    
    type T struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 949 bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_386.s

    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT sigreturn_tramp<>(SB),NOSPLIT,$0
    	LEAL	140(SP), AX		// Load address of ucontext
    	MOVL	AX, 4(SP)
    	MOVL	$SYS_setcontext, AX
    	INT	$0x80
    	MOVL	$-1, 4(SP)		// Something failed...
    	MOVL	$SYS_exit, AX
    	INT	$0x80
    
    TEXT runtime·sigaction(SB),NOSPLIT,$24
    	LEAL	sig+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL				// arg 1 - sig
    	MOVSL				// arg 2 - act
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. test/inline_variadic.go

    // Test inlining of variadic functions.
    // See issue #18116.
    
    package foo
    
    func head(xs ...string) string { // ERROR "can inline head" "leaking param: xs to result"
    	return xs[0]
    }
    
    func f() string { // ERROR "can inline f"
    	x := head("hello", "world") // ERROR "inlining call to head" "\.\.\. argument does not escape"
    	return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:45 UTC 2021
    - 513 bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/cache/ChainBenchmark.java

          if (i == 0) {
            head = chain;
          }
        }
      }
    
      @SuppressWarnings("GuardedBy")
      @Benchmark
      int time(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          // TODO(b/145386688): This access should be guarded by 'this.segment', which is not currently
          // held
          segment.removeEntryFromChain(chain, head);
          dummy += segment.count;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/packaging/common/packaging.properties

    # Environment file
    packaging.env.file=
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 797 bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

    import org.gradle.internal.jvm.Jvm;
    
    import java.util.Arrays;
    import java.util.Locale;
    
    /**
     * Helper to compute maximum heap sizes.
     */
    public class MaximumHeapHelper {
    
        /**
         * Get the default maximum heap.
         *
         * Different JVMs on different systems may use a different default for maximum heap when unset.
         * This method implements a best effort approximation, omitting rules for low memory systems (&lt;192MB total RAM).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top