Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 393 for Extract (0.13 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. pkg/bootstrap/platform/gcp.go

    // location information.
    func (e *gcpEnv) Metadata() map[string]string {
    	// If they statically configure metadata, use it immediately and exit. This does limit the ability to configure some static
    	// metadata, but extract the rest from the metadata server.
    	// However, the motivation to provide static metadata is to remove the dependency on the metadata server, which is unreliable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/help_test.go

    					expectObjectNames[strconv.Itoa(i)] = struct{}{}
    				}
    				list := tc.generateFunc(tc.expectObjectNum)
    				objs, err := ExtractList(list)
    				if err != nil {
    					t.Fatalf("extract list %#v: %v", list, err)
    				}
    				for i := range objs {
    					var (
    						o   metav1.Object
    						err error
    						obj = objs[i]
    					)
    
    					if reflect.TypeOf(obj).Kind() == reflect.Struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 13:40:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_test.cc

        // Trace the operation now (create a node in the graph).
        TF_ExecuteOperation(add_op, 2, inputs, add_outputs, s);
        ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
        TF_DeleteAbstractOp(add_op);
        // Extract the resulting tensor.
        add_output1 = TF_OutputListGet(add_outputs, 0);
        TF_DeleteOutputList(add_outputs);
      }
    
      // Same with a second "Add" computing `arg1 + arg1`.
      TF_AbstractTensor* add_output2;
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    	}{
    		{"Should have no excluded health checks",
    			createGetRequestWithUrl("/healthz?verbose=true"),
    			sets.NewString(),
    		},
    		{"Should extract out the ping health check",
    			createGetRequestWithUrl("/healthz?exclude=ping"),
    			sets.NewString("ping"),
    		},
    		{"Should extract out ping and log health check",
    			createGetRequestWithUrl("/healthz?exclude=ping&exclude=log"),
    			sets.NewString("ping", "log"),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top