Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 160 for pub2 (0.04 sec)

  1. 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)
  2. src/crypto/ecdsa/ecdsa_test.go

    			curve, hash, _ := strings.Cut(line, ",")
    
    			switch curve {
    			case "P-224":
    				pub.Curve = elliptic.P224()
    			case "P-256":
    				pub.Curve = elliptic.P256()
    			case "P-384":
    				pub.Curve = elliptic.P384()
    			case "P-521":
    				pub.Curve = elliptic.P521()
    			default:
    				pub.Curve = nil
    			}
    
    			switch hash {
    			case "SHA-1":
    				h = sha1.New()
    			case "SHA-224":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            }
    
            project("sub2") {
                evaluationDependsOn ':sub1'
    
                task customTask  {
                    dependsOn project(":sub1").tasks.withType(ClimbTask)
                }
            }
            """
    
            when:
            succeeds('sub2:customTask')
    
            then:
            result.assertTasksExecutedInOrder(':sub1:climbTask', ':sub2:customTask')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. 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)
  7. src/crypto/ed25519/ed25519_test.go

    	"strings"
    	"testing"
    )
    
    func Example_ed25519ctx() {
    	pub, priv, err := GenerateKey(nil)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	msg := []byte("The quick brown fox jumps over the lazy dog")
    
    	sig, err := priv.Sign(nil, msg, &Options{
    		Context: "Example_ed25519ctx",
    	})
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	if err := VerifyWithOptions(pub, msg, sig, &Options{
    		Context: "Example_ed25519ctx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. 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)
  9. src/crypto/x509/x509.go

    	case *ecdsa.PublicKey:
    		oid, ok := oidFromNamedCurve(pub.Curve)
    		if !ok {
    			return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: unsupported elliptic curve")
    		}
    		if !pub.Curve.IsOnCurve(pub.X, pub.Y) {
    			return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: invalid elliptic curve public key")
    		}
    		publicKeyBytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)
    		publicKeyAlgorithm.Algorithm = oidPublicKeyECDSA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K 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