Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for rsadsi (0.16 sec)

  1. src/crypto/x509/x509.go

    	{SHA256WithRSAPSS, "SHA256-RSAPSS", oidSignatureRSAPSS, pssParametersSHA256, RSA, crypto.SHA256, true},
    	{SHA384WithRSAPSS, "SHA384-RSAPSS", oidSignatureRSAPSS, pssParametersSHA384, RSA, crypto.SHA384, true},
    	{SHA512WithRSAPSS, "SHA512-RSAPSS", oidSignatureRSAPSS, pssParametersSHA512, RSA, crypto.SHA512, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // only in the body and not the condition, so the hoister analysis will infer
      // it as needing a read as well.
    
      // Generate hoisted reads before the while.
      hoister.GenerateHoistedReads();
    
      // Replace just the read-only resources with the hoisted reads.
      hoister.ReplaceResourceLoads(/*read_only=*/true);
    
      // For written resources, add additional operands to the while op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    }
    
    var bufreaders = []bufReader{
    	{"1", func(b *Reader) string { return reads(b, 1) }},
    	{"2", func(b *Reader) string { return reads(b, 2) }},
    	{"3", func(b *Reader) string { return reads(b, 3) }},
    	{"4", func(b *Reader) string { return reads(b, 4) }},
    	{"5", func(b *Reader) string { return reads(b, 5) }},
    	{"7", func(b *Reader) string { return reads(b, 7) }},
    	{"bytes", readBytes},
    	{"lines", readLines},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            0 * fileResolver._
    
            when:
            collection.finalizeValue()
    
            then:
            0 * fileResolver._
        }
    
        def "cannot query files when unsafe reads disallowed and host is not ready"() {
            given:
            def file = new File('one')
            collection.from('a')
            collection.disallowUnsafeRead()
    
            when:
            collection.files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
       * of reads may not be immediately reflected on the algorithm's data structures. These structures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	return err
    }
    
    // readHandshakeBytes reads handshake data until c.hand contains at least n bytes.
    func (c *Conn) readHandshakeBytes(n int) error {
    	if c.quic != nil {
    		return c.quicReadHandshakeBytes(n)
    	}
    	for c.hand.Len() < n {
    		if err := c.readRecord(); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // readHandshake reads the next handshake message from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				// but currently go-restful can't handle multiple different objects being returned.
    				Returns(http.StatusCreated, "Created", producedObject).
    				Reads(defaultVersionedObject).
    				Writes(producedObject)
    			if err := AddObjectParams(ws, route, versionedUpdateOptions); err != nil {
    				return nil, nil, err
    			}
    			addParams(route, action.Params)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
       * of reads may not be immediately reflected on the algorithm's data structures. These structures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      }) {cluster_attr = "cluster_attr"} : () -> tensor<*xi32>
    
      // CHECK: return %[[CLUSTER_RES]]
      return %0 : tensor<*xi32>
    }
    
    // -----
    
    // Tests that pass lifts resource reads/writes from a loop, and removed unused
    // resources.
    
    // CHECK-LABEL: func @cluster_with_loop
    func.func @cluster_with_loop() -> () {
      // CHECK: %[[COUNT:.*]] = "tf.Const"() <{value = dense<10> : tensor<i32>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	}
    }
    
    func TestRSAPSSKeyError(t *testing.T) {
    	// crypto/tls does not support the rsa_pss_pss_* SignatureSchemes. If support for
    	// public keys with OID RSASSA-PSS is added to crypto/x509, they will be misused with
    	// the rsa_pss_rsae_* SignatureSchemes. Assert that RSASSA-PSS certificates don't
    	// parse, or that they don't carry *rsa.PublicKey keys.
    	b, _ := pem.Decode([]byte(`
    -----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top