Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for isSelect (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                    // Add attributes to select a different type of artifact
                }
            }.files)
        }
    }
    
    configurations {
        classpath {
            attributes {
                // Add more attributes to the configuration
            }
        }
    }
    
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    }
    
    func (p *parser) selectStmt() *SelectStmt {
    	if trace {
    		defer p.trace("selectStmt")()
    	}
    
    	s := new(SelectStmt)
    	s.pos = p.pos()
    
    	p.want(_Select)
    	if !p.got(_Lbrace) {
    		p.syntaxError("missing { after select clause")
    		p.advance(_Case, _Default, _Rbrace)
    	}
    	for p.tok != _EOF && p.tok != _Rbrace {
    		s.Body = append(s.Body, p.commClause())
    	}
    	s.Rbrace = p.pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def visitedArtifactSet = Mock(VisitedArtifactSet)
            def selectedArtifactSet = Mock(SelectedArtifactSet)
    
            given:
            _ * visitedArtifactSet.select(_) >> selectedArtifactSet
            _ * selectedArtifactSet.visitDependencies(_) >> { TaskDependencyResolveContext visitor -> visitor.add(artifactTaskDependencies) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    			serverConfig.MaxVersion = VersionTLS12 // TLSUnique is not defined in TLS 1.3
    			srv := Server(sconn, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				t.Error(err)
    				return
    			}
    			select {
    			case <-parentDone:
    				return
    			case serverTLSUniques <- srv.ConnectionState().TLSUnique:
    			}
    		}
    	}()
    
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    					}
    				}
    			}
    			// Validate Istio's "Service association" requirement
    			if len(matchingServices) == 0 && !ignoreUnmeshed {
    				fmt.Fprintf(cmd.OutOrStdout(),
    					"Warning: No Kubernetes Services select pod %s (see https://istio.io/docs/setup/kubernetes/additional-setup/requirements/ )\n", // nolint: lll
    					kname(pod.ObjectMeta))
    			}
    			// TODO look for port collisions between services targeting this pod
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			for i := 0; i < len(newItems); i++ {
    				select {
    				case toProcess <- newItems[i]:
    				case <-workersExited:
    					klog.V(4).InfoS("workers already exited, and there are some items waiting to be processed", "queued/finished", i, "total", processedItems+len(newItems))
    					// Try to propagate an error from the workers if possible.
    					select {
    					case err := <-errs:
    						return nil, err
    					default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// SupportedProtos is set only if the Application-Layer Protocol
    	// Negotiation Extension is being used (see RFC 7301, Section 3.1).
    	//
    	// Servers can select a protocol by setting Config.NextProtos in a
    	// GetConfigForClient return value.
    	SupportedProtos []string
    
    	// SupportedVersions lists the TLS versions supported by the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    			r.Exists = true
    			r.Error = fmt.Sprintf("max size (%d) exceeded: %d", req.MaxSize, len(data))
    			select {
    			case <-ctx.Done():
    				return ctx.Err()
    			case resp <- r:
    				continue
    			}
    		}
    		found++
    		r.Exists = true
    		r.Data = data
    		r.Modtime = mt
    		select {
    		case <-ctx.Done():
    			return ctx.Err()
    		case resp <- r:
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  9. src/net/http/client_test.go

    	}
    	_, err = io.ReadAll(res.Body)
    	res.Body.Close()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var first string
    	select {
    	case first = <-saw:
    	default:
    		t.Fatal("server didn't see a request")
    	}
    
    	var second string
    	select {
    	case second = <-saw:
    	default:
    		t.Fatal("server didn't see a second request")
    	}
    
    	if first != second {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.addPods(t, "127.0.0.1", "pod1", "sa1", map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod1"))
    
    	// Now add a service that will select pods with label "a".
    	s.addService(t, "svc1",
    		map[string]string{},
    		map[string]string{},
    		[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    	s.assertEvent(t, s.podXdsName("pod1"), s.svcXdsName("svc1"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top