Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 230 for Extract (0.62 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // ServiceExport to control the discoverability policy for individual endpoints, this controller
    // reads ServiceImport in the cluster in order to extract the ClusterSet VIP and generate a
    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

            } catch (Throwable ignored) {
    // TODO:ADAM - switch the logging back on. Need to make sending messages from daemon to client async wrt log event generation
    //                LOGGER.debug("Ignoring failure to extract throwable stack trace.", ignored);
                stackTrace = Collections.emptyList();
            }
    
            try {
                message = throwable.getMessage();
            } catch (Throwable failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/trace/gen.go

    // The provided resource is the resource the stack sample should count against.
    type stackSampleGenerator[R resource] struct {
    	// getResource is a function to extract a resource ID from a stack sample event.
    	getResource func(*trace.Event) R
    }
    
    // StackSample implements a stack sample event handler. It expects ev to be one such event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      //   %dot = "mhlo.dot_general"(%before, %rhs : BxCxZ) : BxY2xZ
      //   %after = "mhlo.reshape"(%dot) : BxY1xZ
      // to:
      //   %dot : "mhlo.dot_general"(%lhs : BxY1xC, %rhs : BxCxZ) : BxY1xZ
    
      // Extract B, Y1, C from %lhs.
      ArrayRef<int64_t> shape_lhs =
          reshape_before.getOperand().getType().getShape();
      ArrayRef<int64_t> shape_b = shape_lhs.take_front(batch_dims_count);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top