Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,576 for ulong (0.06 sec)

  1. src/test/java/jcifs/tests/FileAttributesTest.java

            try ( SmbResource f = createTestFile() ) {
                try {
                    long orig = f.createTime();
                    long time = System.currentTimeMillis() - 60 * 60 * 12;
                    f.setCreateTime(time);
                    long newTime = f.createTime();
                    if ( newTime == orig ) {
                        Assume.assumeTrue("Create time was not changed", false);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

    import javax.annotation.Nullable;
    
    /**
     * A notification that a build operation has finished.
     *
     * The methods of this interface are awkwardly prefixed to allow
     * internal types to implement this interface along with other internal interfaces
     * without risking method collision.
     *
     * @since 4.0
     */
    @UsedByScanPlugin
    public interface BuildOperationFinishedNotification {
    
        /**
         * The operation ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, \
    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS__UMTX_LOCK               = 434 // { int _umtx_lock(struct umtx *umtx); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_386.go

    	SYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, \
    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS__UMTX_LOCK               = 434 // { int _umtx_lock(struct umtx *umtx); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. internal/lock/lock_windows.go

    	// path cannot be so long that you cannot append an 8.3 file
    	// name (that is, the directory name cannot exceed MAX_PATH
    	// minus 12)." Since MAX_PATH is 260, 260 - 12 = 248.
    	//
    	// The MSDN docs appear to say that a normal path that is 248 bytes long
    	// will work; empirically the path must be less then 248 bytes long.
    	if len(path) < 248 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_arm.go

    	SYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, \
    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS__UMTX_LOCK               = 434 // { int _umtx_lock(struct umtx *umtx); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. internal/crypto/header.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package crypto
    
    import (
    	"bytes"
    	"crypto/md5"
    	"encoding/base64"
    	"net/http"
    
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/certs.go

    	}
    
    	// SA creates the private/public key pair, which doesn't use x509 at all
    	saPhase := workflow.Phase{
    		Name:         "sa",
    		Short:        "Generate a private key for signing service account tokens along with its public key",
    		Long:         saKeyLongDesc,
    		Run:          runCertsSa,
    		InheritFlags: getCertPhaseFlags("sa"),
    	}
    
    	subPhases = append(subPhases, saPhase)
    
    	return subPhases
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/ASN1Util.java

     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac;
    
    
    import java.io.EOFException;
    import java.io.IOException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top