Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 177 of 177 for greatest (0.18 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Google Test uses these generators to produce parameters for value-
    // parameterized tests. When a parameterized test case is instantiated
    // with a particular generator, Google Test creates and runs tests
    // for each element in the sequence produced by the generator.
    //
    // In the following sample, tests from test case FooTest are instantiated
    // each three times with parameter values 3, 5, and 8:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// this object is long dead and its memory has since been reused, we'll just observe nil.
    	ptr := unsafe.Pointer(handle.Load())
    	releasem(mp)
    	return ptr
    }
    
    // Retrieves or creates a weak pointer handle for the object p.
    func getOrAddWeakHandle(p unsafe.Pointer) *atomic.Uintptr {
    	// First try to retrieve without allocating.
    	if handle := getWeakHandle(p); handle != nil {
    		return handle
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Google Test uses these generators to produce parameters for value-
    // parameterized tests. When a parameterized test case is instantiated
    // with a particular generator, Google Test creates and runs tests
    // for each element in the sequence produced by the generator.
    //
    // In the following sample, tests from test case FooTest are instantiated
    // each three times with parameter values 3, 5, and 8:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    		conn, err = t.DialTLS(network, addr)
    	}
    	if conn == nil && err == nil {
    		err = errors.New("net/http: Transport.DialTLS or DialTLSContext returned (nil, nil)")
    	}
    	return
    }
    
    // getConn dials and creates a new persistConn to the target as
    // specified in the connectMethod. This includes doing a proxy CONNECT
    // and/or setting up TLS.  If this doesn't return an error, the persistConn
    // is ready to write requests to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    				id.Pos(),
    				ScopeComment(inner),
    				id.Value,
    				id.Pos(),
    				gotObj,
    				wantObj,
    				ObjectScopePos(wantObj))
    			continue
    		}
    	}
    }
    
    // newDefined creates a new defined type named T with the given underlying type.
    func newDefined(underlying Type) *Named {
    	tname := NewTypeName(nopos, nil, "T", nil)
    	return NewNamed(tname, underlying, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    		}
    	}
    
    	// Linear scan register allocation can be influenced by the order in which blocks appear.
    	// Decouple the register allocation order from the generated block order.
    	// This also creates an opportunity for experiments to find a better order.
    	s.visitOrder = layoutRegallocOrder(f)
    
    	// Compute block order. This array allows us to distinguish forward edges
    	// from backward edges and compute how far they go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    				fset.Position(id.Pos()),
    				ScopeComment(inner),
    				id.Name,
    				id.Pos(),
    				gotObj,
    				wantObj,
    				ObjectScopePos(wantObj))
    			continue
    		}
    	}
    }
    
    // newDefined creates a new defined type named T with the given underlying type.
    // Helper function for use with TestIncompleteInterfaces only.
    func newDefined(underlying Type) *Named {
    	tname := NewTypeName(nopos, nil, "T", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top