Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,105 for p_hold (0.1 sec)

  1. src/cmd/go/testdata/script/test_timeout_stdin.txt

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	cmd := exec.Command(exe)
    	cmd.Env = append(cmd.Environ(), "TEST_TIMEOUT_HANG=1")
    
    	// Hold stdin open until this (parent) process exits.
    	if _, err := cmd.StdinPipe(); err != nil {
    		t.Fatal(err)
    	}
    
    	// Forward stderr to the subprocess so that it can hold the stream open.
    	cmd.Stderr = os.Stderr
    
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("started %v", cmd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:23:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. docs/debugging/README.md

            "fe012443-6ba9-4ef2-bb94-b729d2060c78/test123/testw3c.pdf/xl.meta": {"Versions":[{"Type":1,"V2Obj":{"ID":"aGEA/ZUOR4ueRIZsAgfDqA==","DDir":"9MMwM47bS+K6KvQqN3hlDw==","EcAlgo":1,"EcM":2,"EcN":2,"EcBSize":1048576,"EcIndex":1...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. src/internal/abi/abi.go

    // and return value register on the current architecture.
    //
    // Assembly code knows the layout of the first two fields
    // of RegArgs.
    //
    // RegArgs also contains additional space to hold pointers
    // when it may not be safe to keep them only in the integer
    // register space otherwise.
    type RegArgs struct {
    	// Values in these slots should be precisely the bit-by-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/unsafe_test.go

    	if always {
    		x = uintptr(unsafe.Pointer(a))
    	} else {
    		x = 0
    	}
    	// Clobber the global pointer. The only live ref
    	// to the allocated object is now x.
    	a = nil
    
    	// Convert to pointer so it should hold
    	// the object live across GC call.
    	p := unsafe.Pointer(x)
    
    	// Call gc.
    	runtime.GC()
    
    	// Convert back to uintptr.
    	y := uintptr(p)
    
    	// Mess with y so that the subsequent cast
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (2)
  5. src/internal/fuzz/minimize_test.go

    			t.Parallel()
    			ws := &workerServer{
    				fuzzFn: func(e CorpusEntry) (time.Duration, error) {
    					return time.Second, tc.fn(e)
    				},
    			}
    			mem := &sharedMem{region: make([]byte, 100)} // big enough to hold value and header
    			vals := tc.input
    			success, err := ws.minimizeInput(context.Background(), vals, mem, minimizeArgs{})
    			if !success {
    				t.Errorf("minimizeInput did not succeed")
    			}
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaStoreTest.groovy

                    start {
                        seen << store.getSchema(SimpleManagedType)
                    }
                }
            }
    
            then:
            seen.size() == 1
        }
    
        def "does not hold strong reference"() {
            given:
            def cl = new GroovyClassLoader(getClass().classLoader)
            addClass(cl, impl)
    
            expect:
            store.cache.size() > 0
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	case 'O':
    		rst.advance(1)
    		rst.writeString("*mut ")
    		rst.demangleType()
    	case 'F':
    		rst.advance(1)
    		hold := rst.lifetimes
    		rst.fnSig()
    		rst.lifetimes = hold
    	case 'D':
    		rst.advance(1)
    		hold := rst.lifetimes
    		rst.dynBounds()
    		rst.lifetimes = hold
    		if len(rst.str) == 0 || rst.str[0] != 'L' {
    			rst.fail("expected L")
    		}
    		rst.advance(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/math_grad.cc

      }
      ~MatMulGradientFunction() override {
        for (auto input : forward_inputs_) {
          if (input) {
            input->Unref();
          }
        }
      }
    
     private:
      // TODO(b/174778737): Only hold needed inputs.
      vector<AbstractTensorHandle*> forward_inputs_;
      AttrBuilder forward_attrs_;
    };
    
    class NegGradientFunction : public GradientFunction {
     public:
      Status Compute(AbstractContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ModuleInfo.java

    package org.gradle.sample.transform.javamodules;
    
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Data class to hold the information that should be added as module-info.class to an existing Jar file.
     */
    public class ModuleInfo implements Serializable {
        private String moduleName;
        private String moduleVersion;
        private List<String> exports = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. docs/contribute/concurrency.md

    Blocking APIs may be inefficient because you hold a thread idle while waiting on the network. Threads are expensive because they have both a memory overhead and a context-switching overhead.
    
    #### Framed protocols
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top