Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 463 for Extract (0.27 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/9673")
        def "can extract #archiveFile with exclusions"() {
            given:
            "$archive"(archiveFile) {
                lib {
                    file("exclude").text = "exclude"
                    file("include").text = "include"
                }
            }
            and:
            buildFile << """
            task extract(type: Copy) {
                from $unarchive ("$archiveFile")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

                executer.withArguments(
                    "-Dorg.gradle.daemon.healthcheckinterval=${periodicCheckInterval * 1000}",
                    "--debug" // Need debug logging so we can extract the `DefaultDaemonContext`
                )
                if (javaHome) {
                    executer.withJavaHome(javaHome)
                }
                if (buildEncoding) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			if err != nil {
    				t.Fatalf("failed to create server cert: %v", err)
    			}
    			ca, err := caCertFromBundle(serverCertBundleFile)
    			if err != nil {
    				t.Fatalf("failed to extract ca cert from server cert bundle: %v", err)
    			}
    			caCerts := []*x509.Certificate{ca}
    
    			// create SNI certs
    			var namedCertKeys []cliflag.NamedCertKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. cmd/batch-expire.go

    	line, col      int
    	RetainVersions int `yaml:"retainVersions" json:"retainVersions"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobExpirePurge{}
    
    // UnmarshalYAML - BatchJobExpirePurge extends unmarshal to extract line, col
    func (p *BatchJobExpirePurge) UnmarshalYAML(val *yaml.Node) error {
    	type purge BatchJobExpirePurge
    	var tmp purge
    	err := val.Decode(&tmp)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_tls13.go

    	}
    
    	if err := hs.sendDummyChangeCipherSpec(); err != nil {
    		return err
    	}
    
    	earlySecret := hs.earlySecret
    	if earlySecret == nil {
    		earlySecret = hs.suite.extract(nil, nil)
    	}
    	hs.handshakeSecret = hs.suite.extract(hs.sharedKey,
    		hs.suite.deriveSecret(earlySecret, "derived", nil))
    
    	clientSecret := hs.suite.deriveSecret(hs.handshakeSecret,
    		clientHandshakeTrafficLabel, hs.transcript)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

         */
        val stackTracingFailure: Failure? = null,
        val documentationSection: DocumentationSection? = null
    )
    
    
    // TODO:configuration-cache extract interface and move enum back to :configuration-cache
    enum class DocumentationSection(val anchor: String) {
        NotYetImplemented("config_cache:not_yet_implemented"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    	branches      func(remote string) []string                                                        // cmd to list local branches
    	branchRE      *lazyregexp.Regexp                                                                  // regexp to extract branch names from output of tags cmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

      LogicalResult matchAndRewrite(TFFakeQuantOp tf_op,
                                    OpBuilder &rewriter) const {
        if (tf_op.getNumBits() != 8) {
          return failure();
        }
    
        // Extract the min/max constant values from the operands. We also consider
        // a special case that there are tf.Identity ops between the min/max
        // constants and the tf.FakeQuantWithMinMaxVarsOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            return new TestFile(resource.toURI());
        }
    
        /**
         * Extracts the contents of the jar file containing the given resource so that an (unzipped) file pointing to the
         * requested resources within the resource jar can be returned.
         *
         * This method will extract the jar to a directory named {@link #EXTRACTED_RESOURCES_DIR} in the parent of the root
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/cache/secretcache.go

    	now := time.Now()
    	var certExpireTime time.Time
    	if certExpireTime, err = nodeagentutil.ParseCertAndGetExpiryTimestamp(certChain); err != nil {
    		cacheLog.Errorf("failed to extract expiration time in the certificate loaded from file: %v", err)
    		return nil, fmt.Errorf("failed to extract expiration time in the certificate loaded from file: %v", err)
    	}
    
    	return &security.SecretItem{
    		CertificateChain: certChain,
    		PrivateKey:       keyPEM,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top