Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for isSelect (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    #                        [False, True]]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e)  # => [[1, 6], [7, 4]]
    
    
    # 'condition' tensor is [True, False]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e) ==> [[1, 2],
                                 [7, 8]]
    
    ```
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    			"file:", "func:t", "switch:", "case:x", // x implicitly declared
    		}},
    		{`package p14; func _() { select{} }`, []string{
    			"file:", "func:",
    		}},
    		{`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
    			"file:", "func:c", "comm:",
    		}},
    		{`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
    			"file:", "func:c", "comm:i x",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                .nagUser();
    
            return new ResolutionBackedFileCollection(
                resolutionAccess.getResults().map(resolverResults ->
                    resolverResults.getLegacyResults().getLegacyVisitedArtifactSet().select(dependencySpec)
                ),
                false,
                getResolutionHost(),
                taskDependencyFactory
            );
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            /*
            a1->b1
            a2->b2->a1
    
            resolution process:
    
            1. stop resolution, resolve conflict a1 vs a2
            2. select a2, restart resolution
            3. stop, resolve b1 vs b2
            4. select b2, restart
            5. resolve b2 dependencies, a1 has been evicted previously but it should show correctly on the report
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // getPodContainerStatuses gets all containers' statuses for the pod.
    func (m *kubeGenericRuntimeManager) getPodContainerStatuses(ctx context.Context, uid kubetypes.UID, name, namespace string) ([]*kubecontainer.Status, error) {
    	// Select all containers of the given pod.
    	containers, err := m.runtimeService.ListContainers(ctx, &runtimeapi.ContainerFilter{
    		LabelSelector: map[string]string{kubelettypes.KubernetesPodUIDLabel: string(uid)},
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types.go

    const (
    	// DefaultDeploymentUniqueLabelKey is the default key of the selector that is added
    	// to existing ReplicaSets (and label key that is added to its pods) to prevent the existing ReplicaSets
    	// to select new pods (and old pods being select by new ReplicaSet).
    	DefaultDeploymentUniqueLabelKey string = "pod-template-hash"
    )
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    type DeploymentStrategy struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	DNSNoEndpointClusters = monitoring.NewGauge(
    		"pilot_dns_cluster_without_endpoints",
    		"DNS clusters without endpoints caused by the endpoint field in "+
    			"STRICT_DNS type cluster is not set or the corresponding subset cannot select any endpoint",
    	)
    
    	// ProxyStatusClusterNoInstances tracks clusters (services) without workloads.
    	ProxyStatusClusterNoInstances = monitoring.NewGauge(
    		"pilot_eds_no_instances",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/BUILD

        ],
    )
    
    cc_library(
        name = "shape_inference_helpers",
        srcs = ["shape_inference_helpers.cc"],
        hdrs = ["shape_inference_helpers.h"],
        visibility = [":friends"],
        deps = select({
            "//tensorflow:android": [
                "//tensorflow/core:portable_tensorflow_lib",
            ],
            "//conditions:default": [
                "//tensorflow/core:graph",
            ],
        }),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        public void restart(ComponentState selected) {
            // Restarting this configuration after conflict resolution.
            // If this configuration belongs to the select version, queue ourselves up for traversal.
            // If not, then remove our incoming edges, which triggers them to be moved across to the selected configuration
            if (component == selected) {
                if (!evicted) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

      - number: 80
        name: http
        protocol: HTTP
        targetPort: 8080
      resolution: {{.Resolution}}
      location: {{.Location}}
      workloadSelector:
        labels:
          app: uncaptured`). // cannot select pods captured in ambient mesh; IPs are unique per network
    				WithParams(param.Params{}.SetWellKnown(param.Namespace, apps.Namespace))
    
    			for _, tc := range testCases {
    				tc := tc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top