Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 696 for isSelect (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	if err != nil {
    		panic(err)
    	}
    	return token
    }
    
    func testCheckEventType(t *testing.T, w watch.Interface, expectEventType watch.EventType) {
    	select {
    	case res := <-w.ResultChan():
    		if res.Type != expectEventType {
    			t.Errorf("event type want=%v, get=%v", expectEventType, res.Type)
    		}
    	case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  2. docs/bucket/replication/setup_ilm_expiry_replication.sh

    flag=$(./mc admin replicate info sitea --json | jq '.sites[] | select (.name=="sitea") | ."replicate-ilm-expiry"')
    if [ "$flag" != "false" ]; then
    	echo "BUG: ILM expiry replication not disabled for 'sitea'"
    	exit 1
    fi
    flag=$(./mc admin replicate info siteb --json | jq '.sites[] | select (.name=="sitea") | ."replicate-ilm-expiry"')
    if [ "$flag" != "false" ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RootComponentResolutionIntegrationTest.groovy

     * This includes verifying component identity in resolution results, and
     * ensuring the configuration can select other variants in the same component.
     */
    class RootComponentResolutionIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            settingsFile << "rootProject.name = 'root'"
        }
    
        def "buildscript configuration can select itself"() {
            buildFile << """
                buildscript {
                    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                Set<PerformanceExperiment> testNames = new LinkedHashSet<>();
                try (PreparedStatement testIdsStatement = connection.prepareStatement(
                    "select testClass, testId, testProject" +
                        "   from testExecutionExperiment" +
                        "  where resultType = ?" +
                        "  order by testClass, testId, testProject")
                ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. src/runtime/proc_test.go

    	}
    
    	done := make(chan bool)
    	c := make(chan bool)
    	for i := 0; i < 2; i++ {
    		go func() {
    			for {
    				select {
    				case c <- true:
    				case <-done:
    					return
    				}
    			}
    		}()
    	}
    
    	timer := time.After(20 * time.Millisecond)
    	for {
    		select {
    		case <-c:
    		case <-timer:
    			close(done)
    			return
    		}
    	}
    }
    
    func TestTimerFairness2(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    			resp, err := con.upstream.Recv()
    			if err != nil {
    				upstreamErr(con, err)
    				return
    			}
    			select {
    			case con.responsesChan <- resp:
    			case <-con.stopChan:
    			}
    		}
    	}()
    
    	go p.handleUpstreamRequest(con)
    	go p.handleUpstreamResponse(con)
    
    	for {
    		select {
    		case err := <-con.upstreamError:
    			// error from upstream Istiod.
    			return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    uname=$(uname)
    
    includes_AIX='
    #include <net/if.h>
    #include <net/netopt.h>
    #include <netinet/ip_mroute.h>
    #include <sys/protosw.h>
    #include <sys/stropts.h>
    #include <sys/mman.h>
    #include <sys/poll.h>
    #include <sys/select.h>
    #include <sys/termio.h>
    #include <termios.h>
    #include <fcntl.h>
    
    #define AF_LOCAL AF_UNIX
    '
    
    includes_Darwin='
    #define _DARWIN_C_SOURCE
    #define KERNEL 1
    #define _DARWIN_USE_64_BIT_INODE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory_test.go

    			newETCD3Client = func(c storagebackend.TransportConfig) (*clientv3.Client, error) {
    				defer close(ready)
    				dummyKV := mockKV{
    					get: func(ctx context.Context) (*clientv3.GetResponse, error) {
    						select {
    						case <-ctx.Done():
    							return nil, ctx.Err()
    						case <-time.After(tc.responseTime):
    							return nil, nil
    						}
    					},
    				}
    				client.KV = dummyKV
    				return client, nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

                        }
                    }
                }
    
                class BadRuleSource {
                    def candidates = []
    
                    @org.gradle.model.Mutate
                    void select(String s) { }
                }
            """
    
            expect:
            fails ':checkDeps'
            failureDescriptionStartsWith("A problem occurred evaluating root project")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/xds_test.go

    				PortSpecifier: &core.SocketAddress_PortValue{
    					PortValue: uint32(27018),
    				},
    			}, "{.address.socketAddress}").
    			Select("{.filterChains[0].filters[0]}").
    			Equals("envoy.mongo_proxy", "{.name}").
    			Select("{.typedConfig}").
    			Exists("{.statPrefix}").
    			CheckOrFail(t)
    	})
    }
    
    func TestEgressProxy(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top