Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for pub2 (3.15 sec)

  1. src/crypto/internal/boring/ecdh.go

    	if err != nil {
    		C._goboringcrypto_EC_POINT_free(pt)
    		return nil, err
    	}
    	pub := &PublicKeyECDH{k.curve, pt, group, bytes}
    	// Note: Same as in NewPublicKeyECDH regarding finalizer and KeepAlive.
    	runtime.SetFinalizer(pub, (*PublicKeyECDH).finalize)
    	return pub, nil
    }
    
    func pointBytesECDH(curve string, group *C.GO_EC_GROUP, pt *C.GO_EC_POINT) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsCommonDynamicAvailableValues/settings.gradle

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    include 'sub1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 10:43:03 UTC 2023
    - 647 bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

            repositories {
                    maven {
                        url "${mavenS3Repo.uri}"
                        credentials(AwsCredentials)
                    }
                }
            publications {
                pub(MavenPublication) {
                    from components.java
                }
            }
        }
        """
    
            when:
            def module = mavenS3Repo.module("org.gradle", "publishS3Test", "1.45")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/java/org/apache/maven/model/building/ModelBuildingExceptionTest.java

            DefaultModelProblem pb2 =
                    new DefaultModelProblem("message2", ModelProblem.Severity.ERROR, null, "source", 0, 0, "modelId", null);
            String msg = ModelBuildingException.toMessage("modelId", Arrays.asList(pb1, pb2));
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 10:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa_s390x.go

    		case 1: // error
    			return nil, errZeroParam
    		case 2: // retry
    			continue
    		}
    		panic("unreachable")
    	}
    }
    
    func verifyAsm(pub *PublicKey, hash []byte, sig []byte) error {
    	c := pub.Curve
    	functionCode, blockSize, ok := canUseKDSA(c)
    	if !ok {
    		return errNoAsm
    	}
    
    	r, s, err := parseSignature(sig)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/encoding/pem/example_test.go

    	if block == nil || block.Type != "PUBLIC KEY" {
    		log.Fatal("failed to decode PEM block containing public key")
    	}
    
    	pub, err := x509.ParsePKIXPublicKey(block.Bytes)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	fmt.Printf("Got a %T, with remaining data: %q", pub, rest)
    	// Output: Got a *rsa.PublicKey, with remaining data: "and some more"
    }
    
    func ExampleEncode() {
    	block := &pem.Block{
    		Type: "MESSAGE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 03:08:55 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenPublishGcsErrorsIntegrationTest.groovy

        version = '${mavenVersion}'
    
        publishing {
            repositories {
                    maven {
                       url "${mavenGcsRepo.uri}"
                    }
                }
            publications {
                pub(MavenPublication) {
                    from components.java
                }
            }
        }
        """
    
            when:
            def module = mavenGcsRepo.module("org.gradle", "publishGcsTest", "1.45")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/ecdsa.go

    		return nil, fail("ECDSA_sign")
    	}
    	runtime.KeepAlive(priv)
    	return sig[:sigLen], nil
    }
    
    func VerifyECDSA(pub *PublicKeyECDSA, hash []byte, sig []byte) bool {
    	ok := C._goboringcrypto_ECDSA_verify(0, base(hash), C.size_t(len(hash)), base(sig), C.size_t(len(sig)), pub.key) != 0
    	runtime.KeepAlive(pub)
    	return ok
    }
    
    func GenerateKeyECDSA(curve string) (X, Y, D BigInt, err error) {
    	nid, err := curveNID(curve)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

        group = 'org.gradle'
        version = '1.0-SNAPSHOT'
    
        publishing {
            repositories {
                maven { url "${mavenRepo.uri}" }
            }
            publications {
                pub(MavenPublication) {
                    from components.java
                }
            }
        }
    """
            def module = mavenRepo.module('org.gradle', 'snapshotPublish', '1.0-SNAPSHOT')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    // CHECK: %[[pad2:.*]] = "tf.PadV2"(%[[quant2]]
    // CHECK: %[[xlaconv2:.*]] = "tf.XlaConvV2"(%[[pad2]]
    // CHECK: %[[sub2:.*]] = "tf.Sub"(%[[xlaconv2]]
    // CHECK: %[[cast2:.*]] = "tf.Cast"(%[[sub2]]) <{Truncate = false}> : (tensor<1x3x2x2xi32>) -> tensor<1x3x2x2xf32>
    // CHECK: %[[rescale2:.*]] = "tf.Mul"(%[[cast2]]
    // CHECK: %[[rescale2_maxclamped:.*]] = "tf.Maximum"(%[[rescale2]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top