Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 969 for realtime (0.19 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

            bufferIndex += 4;
            this.creationTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.lastAccessTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.lastWriteTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.changeTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals("relative", baseDirConverter.resolveAsRelativePath("relative"))
            assertEquals("relative", baseDirConverter.resolveForDisplay("relative"))
    
            assertEquals("relative${File.separator}child".toString(), baseDirConverter.resolveAsRelativePath("relative/child"))
            assertEquals("relative${File.separator}child".toString(), baseDirConverter.resolveForDisplay("relative/child"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    }
    
    // tileRemotePath returns the remote path for the tile.
    func (c *Client) tileRemotePath(tile tlog.Tile) string {
    	return "/" + tile.Path()
    }
    
    // readTile reads a single tile, either from the on-disk cache or the server.
    func (c *Client) readTile(tile tlog.Tile) ([]byte, error) {
    	type cached struct {
    		data []byte
    		err  error
    	}
    
    	result := c.tileCache.Do(tile, func() interface{} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. docs/en/overrides/main.html

        </div>
      </div>
      <div id="announce-right" style="position: relative;">
        <div class="item">
          <a title="CryptAPI: Your easy to use, secure and privacy oriented payment gateway." style="display: block; position: relative;" href="https://cryptapi.io/" target="_blank">
            <span class="sponsor-badge">sponsor</span>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

    
    /**
     * Adds and configures a Maven repository.
     *
     * The provided [url] value is evaluated as per [org.gradle.api.Project.uri]. This means, for example, you can pass in a `File` object, or a relative path to be evaluated relative
     * to the project directory.
     *
     * @param url the base URL of this repository. This URL is used to find both POMs and artifact files.
     * @return The added repository.
     *
     * @see [RepositoryHandler.maven]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/reloctype.go

    	// address using an S-type instruction.
    	R_RISCV_PCREL_LO12_S
    
    	// R_RISCV_BRANCH resolves a 12-bit PC-relative branch offset.
    	R_RISCV_BRANCH
    
    	// R_RISCV_RVC_BRANCH resolves an 8-bit PC-relative offset for a CB-type
    	// instruction.
    	R_RISCV_RVC_BRANCH
    
    	// R_RISCV_RVC_JUMP resolves an 11-bit PC-relative offset for a CJ-type
    	// instruction.
    	R_RISCV_RVC_JUMP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

         * PUTs the source file (must exist as file) to target URI. The target MUST BE relative from the
         * {@link RemoteRepository#getUrl()} root.
         *
         * @throws RuntimeException If PUT fails for any reason.
         */
        void put(@Nonnull Path source, @Nonnull URI relativeTarget);
    
        /**
         * PUTs the source byte array to target URI. The target MUST BE relative from the
         * {@link RemoteRepository#getUrl()} root.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

            bufferIndex += 4;
    
            this.creationTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.lastAccessTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.lastWriteTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.changeTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

        @Override
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the copy destination.
         * <p>
         * Always uses '/' as the hierarchy separator, regardless of platform file separator.
         * Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path, relative to the root of the copy destination. Never returns null.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/vcs/VersionControlSpec.java

        /**
         * Returns the relative path to the root of the build within the repository.
         *
         * <p>Defaults to an empty relative path, meaning the root of the repository.
         *
         * @return the root directory of the build, relative to the root of this repository.
         * @since 4.5
         */
        String getRootDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top