Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for dying (0.04 sec)

  1. src/testing/testing.go

    		}()
    
    		doPanic := func(err any) {
    			t.Fail()
    			if r := t.runCleanup(recoverAndReturnPanic); r != nil {
    				t.Logf("cleanup panicked with %v", r)
    			}
    			// Flush the output log up to the root before dying.
    			for root := &t.common; root.parent != nil; root = root.parent {
    				root.mu.Lock()
    				root.duration += highPrecisionTimeSince(root.start)
    				d := root.duration
    				root.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	// The register containing x is going to get clobbered.
    	// Don't merge if we still need the value of x.
    	// We don't have liveness information here, but we can
    	// approximate x dying with:
    	//  1) target is x's only use.
    	//  2) target is not in a deeper loop than x.
    	if x.Uses != 1 {
    		return false
    	}
    	loopnest := x.Block.Func.loopnest()
    	loopnest.calculateDepths()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    			// Before we pick a register for the output value, allow input registers
    			// to be deallocated. We do this here so that the output can use the
    			// same register as a dying input.
    			if !opcodeTable[v.Op].resultNotInArgs {
    				s.tmpused = s.nospill
    				s.nospill = 0
    				s.advanceUses(v) // frees any registers holding args that are no longer live
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	}
    
    	defer func() {
    		if err := cmd.Wait(); err == nil {
    			t.Errorf("Test process succeeded, but expected to fail")
    		}
    		stdin.Close() // Keep stdin alive until the process has finished dying.
    	}()
    
    	// Wait for the process to be started.
    	// (It will close its stdout when it reaches TestMain.)
    	io.Copy(io.Discard, stdout)
    
    	processKiller(cmd.Process)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. internal/s3select/select_test.go

    		input      []byte
    		requestXML []byte // override request XML
    		wantResult string
    		wantErr    bool
    	}{
    		{
    			name:  "select-all",
    			input: testInput,
    			query: ``,
    			// Since we are doing offset, no headers are used.
    			wantResult: `{"_1":"2","_2":"2017-01-02T03:04Z","_3":"-5","_4":" 0.765111","_5":""}`,
    			requestXML: []byte(`<?xml version="1.0" encoding="UTF-8"?>
    <SelectObjectContentRequest>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    // but contains no pointers itself and an immutable part that's passed and
    // returned by value and can contain pointers. We could potentially hide that
    // we're doing that in trivial methods that are inlined into the caller that has
    // the stack allocation, but that's fragile.
    type unwinder struct {
    	// frame is the current physical stack frame, or all 0s if
    	// there is no frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * ```java
     * client.connectionPool().evictAll();
     * ```
     *
     * If your client has a cache, call [close()][Cache.close]. Note that it is an error to create calls
     * against a cache that is closed, and doing so will cause the call to crash.
     *
     * ```java
     * client.cache().close();
     * ```
     *
     * OkHttp also uses daemon threads for HTTP/2 connections. These will exit automatically if they
     * remain idle.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/TypeToken.java

      @LazyInit @CheckForNull private transient TypeResolver covariantTypeResolver;
    
      /**
       * Constructs a new type token of {@code T}.
       *
       * <p>Clients create an empty anonymous subclass. Doing so embeds the type parameter in the
       * anonymous class's type hierarchy so we can reconstitute it at runtime despite erasure.
       *
       * <p>For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeToken.java

      @LazyInit @CheckForNull private transient TypeResolver covariantTypeResolver;
    
      /**
       * Constructs a new type token of {@code T}.
       *
       * <p>Clients create an empty anonymous subclass. Doing so embeds the type parameter in the
       * anonymous class's type hierarchy so we can reconstitute it at runtime despite erasure.
       *
       * <p>For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    			// the preceding listeners from the sidecarScope. This allows
    			// users to specify a trimmed set of services for one or more
    			// listeners and then add a catch all egress listener for all
    			// other ports. Doing so allows people to restrict the set of
    			// services exposed on one or more listeners, and avoid hard
    			// port conflicts like tcp taking over http or http taking over
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top