Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for Reference (1.34 sec)

  1. src/crypto/tls/handshake_server_test.go

    	}
    	if state.DidResume {
    		t.Fatalf("handshake resumed at a higher version")
    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    		fmt.Fprintf(fgcc, "}\n")
    
    		// In internal linking mode, the Go linker sees both
    		// the C wrapper written above and the Go wrapper it
    		// references. Hence, export the C wrapper (e.g., for
    		// if we're building a shared object). The Go linker
    		// will resolve the C wrapper's reference to the Go
    		// wrapper without a separate export.
    		fmt.Fprintf(fgo2, "//go:cgo_export_dynamic %s\n", exp.ExpName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
       * <pre>{@code
       * Set<Object> identityHashSet = Sets.newSetFromMap(
       *     new IdentityHashMap<Object, Boolean>());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
       * <pre>{@code
       * Set<Object> identityHashSet = Sets.newSetFromMap(
       *     new IdentityHashMap<Object, Boolean>());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    }
    
    // ChanArgs contains Type fields specific to TCHANARGS types.
    type ChanArgs struct {
    	T *Type // reference to a chan type whose elements need a width check
    }
    
    // // FuncArgs contains Type fields specific to TFUNCARGS types.
    type FuncArgs struct {
    	T *Type // reference to a func type whose elements need a width check
    }
    
    // Chan contains Type fields specific to channel types.
    type Chan struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    	// NOTE: It's possible we could make ppc64 closer to other
    	// architectures: ppc64's .plt is like .plt.got on other
    	// platforms and ppc64's .glink is like .plt on other
    	// platforms.
    
    	// Find all relocations that reference dynamic imports.
    	// Reserve PLT entries for these symbols and generate call
    	// stubs. The call stubs need to live in .text, which is why we
    	// need to do this pass this early.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue18419.go", // types2 reports no field or method member, but should say unexported
    	"fixedbugs/issue20233.go", // types2 reports two instead of one error (preference: 1.17 compiler)
    	"fixedbugs/issue20245.go", // types2 reports two instead of one error (preference: 1.17 compiler)
    	"fixedbugs/issue31053.go", // types2 reports "unknown field" instead of "cannot refer to unexported field"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            then:
            IllegalStateException e = thrown()
            e.message == "TestRegistry has been closed."
        }
    
        /*
         * Closing children would imply holding a reference to them. This would
         * create memory leaks.
         */
    
        def "does not close services from child registries"() {
            given:
            def parentService = Mock(TestCloseService)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		switch c {
    		case 'V':
    			n, _ := st.name()
    			return &Special{Prefix: "guard variable for ", Val: n}
    		case 'R':
    			n, _ := st.name()
    			st.seqID(true)
    			return &Special{Prefix: "reference temporary for ", Val: n}
    		case 'A':
    			v := st.encoding(true, notForLocalName)
    			return &Special{Prefix: "hidden alias for ", Val: v}
    		case 'T':
    			if len(st.str) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * This URL references a share called <code>tmp</code> on the server
     * <code>angus</code> as user <code>miallen</code> who's password is
     * <code>mypass</code>.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
     * <code>smb://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td>
     * <td>
     * A relatively sophisticated example that references a file
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top