Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for isSelect (0.14 sec)

  1. src/go/printer/nodes.go

    		}
    		p.setPos(s.Colon)
    		p.print(token.COLON)
    		p.stmtList(s.Body, 1, nextIsRBrace)
    
    	case *ast.SelectStmt:
    		p.print(token.SELECT, blank)
    		body := s.Body
    		if len(body.List) == 0 && !p.commentBefore(p.posFor(body.Rbrace)) {
    			// print empty select statement w/o comments on one line
    			p.setPos(body.Lbrace)
    			p.print(token.LBRACE)
    			p.setPos(body.Rbrace)
    			p.print(token.RBRACE)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pkg/controller/history/controller_history_test.go

    			parent:    &ss1.ObjectMeta,
    			selector:  sel1,
    			revisions: []*apps.ControllerRevision{ss1Rev1, ss1Rev2},
    			want:      map[string]bool{ss1Rev1.Name: true, ss1Rev2.Name: true},
    		},
    		{
    			name:      "doesn't select another Objects history",
    			parent:    &ss1.ObjectMeta,
    			selector:  sel1,
    			revisions: []*apps.ControllerRevision{ss1Rev1, ss1Rev2, ss2Rev1},
    			want:      map[string]bool{ss1Rev1.Name: true, ss1Rev2.Name: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    	PackageOpts
    	requirements *Requirements
    
    	allPatternIsRoot bool // Is the "all" pattern an additional root?
    
    	listRoots func(rs *Requirements) []string
    }
    
    func (ld *loader) reset() {
    	select {
    	case <-ld.work.Idle():
    	default:
    		panic("loader.reset when not idle")
    	}
    
    	ld.roots = nil
    	ld.pkgCache = new(par.Cache[string, *loadPkg])
    	ld.pkgs = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. 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)
  5. common/scripts/metallb-native.yaml

                      IPAddressPools have the same priority, choice will be random.
                    properties:
                      namespaceSelectors:
                        description: NamespaceSelectors list of label selectors to select
                          namespace(s) for ip pool, an alternative to using namespace
                          list.
                        items:
                          description: A label selector is a label query over a set of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top