- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 207 for Pointers (0.15 sec)
-
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
- }
- int writeResourceRecordWireFormat( byte[] dst, int dstIndex ) {
- int start = dstIndex;
- if( recordName == questionName ) {
- dst[dstIndex++] = (byte)0xC0; // label string pointer to
- dst[dstIndex++] = (byte)0x0C; // questionName (offset 12)
- } else {
- dstIndex += recordName.writeWireFormat( dst, dstIndex );
- }
- 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) -
src/main/java/jcifs/DfsReferralData.java
- */
- String getPath ();
- /**
- * @return the expiration time of this entry
- */
- long getExpiration ();
- /**
- *
- * @return pointer to next referral, points to self if there is no further referral
- */
- DfsReferralData next ();
- /**
- * @return the link
- */
- 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) -
src/main/webapp/js/admin/admin.js
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Aug 06 20:44:47 UTC 2018 - 3.1K bytes - Viewed (0) -
errors.go
- ErrDryRunModeUnsupported = errors.New("dry run mode unsupported")
- // ErrInvalidDB invalid db
- ErrInvalidDB = errors.New("invalid db")
- // ErrInvalidValue invalid value
- ErrInvalidValue = errors.New("invalid value, should be pointer to struct or slice")
- // ErrInvalidValueOfLength invalid values do not match length
- 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) -
api/go1.7.txt
- pkg reflect, method (StructTag) Lookup(string) (string, bool)
- pkg runtime, func CallersFrames([]uintptr) *Frames
- pkg runtime, func KeepAlive(interface{})
- pkg runtime, func SetCgoTraceback(int, unsafe.Pointer, unsafe.Pointer, unsafe.Pointer)
- pkg runtime, method (*Frames) Next() (Frame, bool)
- pkg runtime, type Frame struct
- pkg runtime, type Frame struct, Entry uintptr
- 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) -
api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java
- import org.apache.maven.api.annotations.Nonnull;
- /**
- * Partial identification of an {@link Artifact} in a Maven repository.
- * Each {@code ArtifactCoordinates} instance is basically a pointer to a file in the Maven repository,
- * except that the exact version may not be known yet.
- *
- * @since 4.0.0
- */
- @Experimental
- @Immutable
- public interface ArtifactCoordinates {
- /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/PackageSanityTests.java
- }
- @Override
- public void testNulls() throws Exception {
- try {
- super.testNulls();
- } catch (AssertionError e) {
- assertWithMessage("Method did not throw null pointer OR element not in graph exception.")
- .that(e)
- .hasCauseThat()
- .hasMessageThat()
- .contains(ERROR_ELEMENT_NOT_IN_GRAPH);
- }
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 3.2K bytes - Viewed (0) -
tensorflow/c/eager/immediate_execution_distributed_manager.h
- // Check if the remote task is alive.
- virtual absl::Status CheckRemoteAlive(const std::string& remote_task_name,
- bool* is_alive) = 0;
- // Get pointer to the coordination service agent instance.
- virtual tsl::CoordinationServiceAgent* GetCoordinationServiceAgent() = 0;
- };
- } // 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) -
android/guava-tests/test/com/google/common/graph/PackageSanityTests.java
- }
- @Override
- public void testNulls() throws Exception {
- try {
- super.testNulls();
- } catch (AssertionError e) {
- assertWithMessage("Method did not throw null pointer OR element not in graph exception.")
- .that(e)
- .hasCauseThat()
- .hasMessageThat()
- .contains(ERROR_ELEMENT_NOT_IN_GRAPH);
- }
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 3.2K bytes - Viewed (0) -
internal/grid/muxserver.go
- // The client will refill the tokens as they confirm delivery of the messages.
- for i := 0; i < outboundCap; i++ {
- m.outBlock <- struct{}{}
- }
- // Handler goroutine.
- var handlerErr atomic.Pointer[RemoteErr]
- go func() {
- wg.Wait()
- defer xioutil.SafeClose(send)
- err := m.handleRequests(ctx, msg, send, handler, handlerIn)
- if err != nil {
- handlerErr.Store(err)
- }
- }()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 07 15:51:52 UTC 2024 - 9.7K bytes - Viewed (0)