Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 207 for Pointers (0.15 sec)

  1. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

    1. }
    2. int writeResourceRecordWireFormat( byte[] dst, int dstIndex ) {
    3. int start = dstIndex;
    4. if( recordName == questionName ) {
    5. dst[dstIndex++] = (byte)0xC0; // label string pointer to
    6. dst[dstIndex++] = (byte)0x0C; // questionName (offset 12)
    7. } else {
    8. dstIndex += recordName.writeWireFormat( dst, dstIndex );
    9. }
    10. writeInt2( recordType, dst, dstIndex );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/DfsReferralData.java

    1. */
    2. String getPath ();
    3.  
    4.  
    5. /**
    6. * @return the expiration time of this entry
    7. */
    8. long getExpiration ();
    9.  
    10.  
    11. /**
    12. *
    13. * @return pointer to next referral, points to self if there is no further referral
    14. */
    15. DfsReferralData next ();
    16.  
    17.  
    18. /**
    19. * @return the link
    20. */
    21. String getLink ();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/admin.js

    1. $submitButton[0].submit();
    2. }
    3. // ignore enter key down
    4. return false;
    5. }
    6. });
    7.  
    8. $(".table tr[data-href]").each(function() {
    9. $(this)
    10. .css("cursor", "pointer")
    11. .hover(
    12. function() {
    13. $(this).addClass("active");
    14. },
    15. function() {
    16. $(this).removeClass("active");
    17. }
    18. )
    19. .click(function() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Aug 06 20:44:47 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. errors.go

    1. ErrDryRunModeUnsupported = errors.New("dry run mode unsupported")
    2. // ErrInvalidDB invalid db
    3. ErrInvalidDB = errors.New("invalid db")
    4. // ErrInvalidValue invalid value
    5. ErrInvalidValue = errors.New("invalid value, should be pointer to struct or slice")
    6. // ErrInvalidValueOfLength invalid values do not match length
    7. ErrInvalidValueOfLength = errors.New("invalid association values, length doesn't match")
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. api/go1.7.txt

    1. pkg reflect, method (StructTag) Lookup(string) (string, bool)
    2. pkg runtime, func CallersFrames([]uintptr) *Frames
    3. pkg runtime, func KeepAlive(interface{})
    4. pkg runtime, func SetCgoTraceback(int, unsafe.Pointer, unsafe.Pointer, unsafe.Pointer)
    5. pkg runtime, method (*Frames) Next() (Frame, bool)
    6. pkg runtime, type Frame struct
    7. pkg runtime, type Frame struct, Entry uintptr
    8. pkg runtime, type Frame struct, File string
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java

    1. import org.apache.maven.api.annotations.Nonnull;
    2.  
    3. /**
    4. * Partial identification of an {@link Artifact} in a Maven repository.
    5. * Each {@code ArtifactCoordinates} instance is basically a pointer to a file in the Maven repository,
    6. * except that the exact version may not be known yet.
    7. *
    8. * @since 4.0.0
    9. */
    10. @Experimental
    11. @Immutable
    12. public interface ArtifactCoordinates {
    13. /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/graph/PackageSanityTests.java

    1. }
    2.  
    3. @Override
    4. public void testNulls() throws Exception {
    5. try {
    6. super.testNulls();
    7. } catch (AssertionError e) {
    8. assertWithMessage("Method did not throw null pointer OR element not in graph exception.")
    9. .that(e)
    10. .hasCauseThat()
    11. .hasMessageThat()
    12. .contains(ERROR_ELEMENT_NOT_IN_GRAPH);
    13. }
    14. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/immediate_execution_distributed_manager.h

    1. // Check if the remote task is alive.
    2. virtual absl::Status CheckRemoteAlive(const std::string& remote_task_name,
    3. bool* is_alive) = 0;
    4.  
    5. // Get pointer to the coordination service agent instance.
    6. virtual tsl::CoordinationServiceAgent* GetCoordinationServiceAgent() = 0;
    7. };
    8. } // namespace tensorflow
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/graph/PackageSanityTests.java

    1. }
    2.  
    3. @Override
    4. public void testNulls() throws Exception {
    5. try {
    6. super.testNulls();
    7. } catch (AssertionError e) {
    8. assertWithMessage("Method did not throw null pointer OR element not in graph exception.")
    9. .that(e)
    10. .hasCauseThat()
    11. .hasMessageThat()
    12. .contains(ERROR_ELEMENT_NOT_IN_GRAPH);
    13. }
    14. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. internal/grid/muxserver.go

    1. // The client will refill the tokens as they confirm delivery of the messages.
    2. for i := 0; i < outboundCap; i++ {
    3. m.outBlock <- struct{}{}
    4. }
    5.  
    6. // Handler goroutine.
    7. var handlerErr atomic.Pointer[RemoteErr]
    8. go func() {
    9. wg.Wait()
    10. defer xioutil.SafeClose(send)
    11. err := m.handleRequests(ctx, msg, send, handler, handlerIn)
    12. if err != nil {
    13. handlerErr.Store(err)
    14. }
    15. }()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top