Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for 4996 (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_OS_WINDOWS
    
    // Functions deprecated by MSVC 8.0.
    
    #ifdef _MSC_VER
    // Temporarily disable warning 4996 (deprecated function).
    # pragma warning(push)
    # pragma warning(disable:4996)
    #endif
    
    inline const char* StrNCpy(char* dest, const char* src, size_t n) {
      return strncpy(dest, src, n);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. releasenotes/notes/49896.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 49896
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 15:23:49 UTC 2024
    - 278 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_TRUNCATE                     = 4092
    	SYS_FTRUNCATE                    = 4093
    	SYS_FCHMOD                       = 4094
    	SYS_FCHOWN                       = 4095
    	SYS_GETPRIORITY                  = 4096
    	SYS_SETPRIORITY                  = 4097
    	SYS_PROFIL                       = 4098
    	SYS_STATFS                       = 4099
    	SYS_FSTATFS                      = 4100
    	SYS_IOPERM                       = 4101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    	SYS_TRUNCATE                     = 4092
    	SYS_FTRUNCATE                    = 4093
    	SYS_FCHMOD                       = 4094
    	SYS_FCHOWN                       = 4095
    	SYS_GETPRIORITY                  = 4096
    	SYS_SETPRIORITY                  = 4097
    	SYS_PROFIL                       = 4098
    	SYS_STATFS                       = 4099
    	SYS_FSTATFS                      = 4100
    	SYS_IOPERM                       = 4101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. releasenotes/notes/49960.yaml

    Xiaopeng Han <******@****.***> 1711391184 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 214 bytes
    - Viewed (0)
  6. releasenotes/notes/49965.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 49965
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 04:25:21 UTC 2024
    - 192 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            1 * action.execute(_, _) >> "result"
        }
    
        def "fires progress events as content is read"() {
            setup:
            metaData.getContentLength() >> 4096
            expectReadBuildOperation(4096)
            expectResourceRead(new ByteArrayInputStream(new byte[4096]))
    
            when:
            def result = accessor.withContent(location, false, action)
    
            then:
            result == "result"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/crypto/x509/boring.go

    	if !fipstls.Required() {
    		return true
    	}
    
    	// The key must be RSA 2048, RSA 3072, RSA 4096,
    	// or ECDSA P-256, P-384, P-521.
    	switch k := c.PublicKey.(type) {
    	default:
    		return false
    	case *rsa.PublicKey:
    		if size := k.N.BitLen(); size != 2048 && size != 3072 && size != 4096 {
    			return false
    		}
    	case *ecdsa.PublicKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 993 bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa_s390x.go

    // kdsa invokes the "compute digital signature authentication"
    // instruction with the given function code and 4096 byte
    // parameter block.
    //
    // The return value corresponds to the condition code set by the
    // instruction. Interrupted invocations are handled by the
    // function.
    //
    //go:noescape
    func kdsa(fc uint64, params *[4096]byte) (errn uint64)
    
    // testingDisableKDSA forces the generic fallback path. It must only be set in tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cmd/server-rlimit.go

    	if _, maxLimit, err = sys.GetMaxOpenFileLimit(); err != nil {
    		return err
    	}
    
    	if maxLimit < 4096 && runtime.GOOS != globalWindowsOSName {
    		logger.Info("WARNING: maximum file descriptor limit %d is too low for production servers. At least 4096 is recommended. Fix with \"ulimit -n 4096\"",
    			maxLimit)
    	}
    
    	if err = sys.SetMaxOpenFileLimit(maxLimit, maxLimit); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top