Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 23543 (0.16 sec)

  1. src/flag/flag_test.go

      -Alongflagname
        	disable bounds checking
      -C	a boolean defaulting to true (default true)
      -D path
        	set relative path for local imports
      -E string
        	issue 23543 (default "0")
      -F number
        	a non-zero number (default 2.7)
      -G float
        	a float that defaults to zero
      -M string
        	a multiline
        	help
        	string
      -N int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/ObjectIdentifiers.kt

      const val SHA256_WITH_RSA_ENCRYPTION = "1.2.840.113549.1.1.11"
      const val SUBJECT_ALTERNATIVE_NAME = "2.5.29.17"
      const val BASIC_CONSTRAINTS = "2.5.29.19"
      const val COMMON_NAME = "2.5.4.3"
      const val ORGANIZATIONAL_UNIT_NAME = "2.5.4.11"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcNonJvmIntegrationTest.groovy

    @Requires(UnitTestPreconditions.StableGroovy)
    class CodeNarcNonJvmIntegrationTest extends MultiVersionIntegrationSpec implements CodeNarcTestFixture {
    
        @Issue("https://github.com/gradle/gradle/issues/23343")
        def "can apply codenarc plugin to a non-jvm project"() {
            buildFile << """
                plugins {
                    id 'base'
                    id 'codenarc'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/crypto/x509/pkix/pkix.go

    	Parameters asn1.RawValue `asn1:"optional"`
    }
    
    type RDNSequence []RelativeDistinguishedNameSET
    
    var attributeTypeNames = map[string]string{
    	"2.5.4.6":  "C",
    	"2.5.4.10": "O",
    	"2.5.4.11": "OU",
    	"2.5.4.3":  "CN",
    	"2.5.4.5":  "SERIALNUMBER",
    	"2.5.4.7":  "L",
    	"2.5.4.8":  "ST",
    	"2.5.4.9":  "STREET",
    	"2.5.4.17": "POSTALCODE",
    }
    
    // String returns a string representation of the sequence r,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv10-ECDHE-RSA-AES

    >>> Flow 2 (server to client)
    00000000  16 03 01 00 5d 02 00 00  59 03 01 5a a9 a1 6f fa  |....]...Y..Z..o.|
    00000010  19 95 38 9e 68 42 d7 0f  73 23 09 3f 01 5f e8 ae  |..8.hB..s#.?._..|
    00000020  d7 06 a2 9b d3 01 0f 0d  23 53 7d 20 55 2b 67 4e  |........#S} U+gN|
    00000030  8b 44 94 a5 25 ef b7 fb  e1 c7 85 e8 15 60 f9 d7  |.D..%........`..|
    00000040  6d a4 3f 3d 42 d7 78 a6  41 49 b7 12 c0 13 00 00  |m.?=B.x.AI......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              ),
          }])
      )
      @test_util.run_in_graph_and_eager_modes
      def test_add_ptq_model(
          self,
          shape_dynamic: bool,
      ):
        input_shape = (None, 3, 4, 3) if shape_dynamic else (2, 3, 4, 3)
        self._create_add_model(
            input_shape,
            self._input_saved_model_path,
        )
    
        # Generate model input data.
        rng = np.random.default_rng(seed=42)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. src/os/timeout_test.go

    						t.Error(err)
    					}
    					w.SetWriteDeadline(time.Now().Add(time.Millisecond))
    				}
    			}
    		}()
    	}
    }
    
    // Closing a TTY while reading from it should not hang.  Issue 23943.
    func TestTTYClose(t *testing.T) {
    	// Ignore SIGTTIN in case we are running in the background.
    	signal.Ignore(syscall.SIGTTIN)
    	defer signal.Reset(syscall.SIGTTIN)
    
    	f, err := os.Open("/dev/tty")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy.go

    	err = p.copyResponse(rw, res.Body, p.flushInterval(res))
    	if err != nil {
    		defer res.Body.Close()
    		// Since we're streaming the response, if we run into an error all we can do
    		// is abort the request. Issue 23643: ReverseProxy should use ErrAbortHandler
    		// on read error while copying body.
    		if !shouldPanicOnCopyError(req) {
    			p.logf("suppressing panic for copyResponse error in test; copy error: %v", err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. src/crypto/sha1/sha1_test.go

    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29543
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___SINF_H                        = 0x92F // 2351
    	SYS___SINL_H                        = 0x930 // 2352
    	SYS___SINH_H                        = 0x931 // 2353
    	SYS___SINHF_H                       = 0x932 // 2354
    	SYS___SINHL_H                       = 0x933 // 2355
    	SYS___SQRT_H                        = 0x934 // 2356
    	SYS___SQRTF_H                       = 0x935 // 2357
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top