Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 733 for isSelect (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    int listen(int, int);
    int lstat(uintptr_t, uintptr_t);
    int pause();
    int pread64(int, uintptr_t, size_t, long long);
    int pwrite64(int, uintptr_t, size_t, long long);
    #define c_select select
    int select(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t);
    int pselect(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t);
    int setregid(int, int);
    int setreuid(int, int);
    int shutdown(int, int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Lsh64x64 x y) && shiftIsBounded(v) => (I64Shl x y)
    (Lsh64x64 x (I64Const [c])) && uint64(c) < 64 => (I64Shl x (I64Const [c]))
    (Lsh64x64 x (I64Const [c])) && uint64(c) >= 64 => (I64Const [0])
    (Lsh64x64 x y) => (Select (I64Shl x y) (I64Const [0]) (I64LtU y (I64Const [64])))
    (Lsh64x(32|16|8) [c] x y) => (Lsh64x64 [c] x (ZeroExt(32|16|8)to64 y))
    
    (Lsh32x64 ...) => (Lsh64x64 ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

            for (String platformName : platformNames) {
                target(platformName);
            }
        }
    
        @Override
        public PlatformToolProvider select(NativePlatformInternal targetPlatform) {
            return select(NativeLanguage.ANY, targetPlatform);
        }
    
        private PlatformToolProvider getProviderForPlatform(NativePlatformInternal targetPlatform) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

    def _tfr_control_flow_if(x, y, pred):
      if pred:
        return x
      else:
        return y
    
    
    @composite.Composite('TestThreeInputsOp')
    def _tfr_control_flow_nested_if(x, y, z, select):
      if select == 'x':
        return x
      elif select == 'y':
        return y
      else:
        return z
    
    
    @composite.Composite('TestInputNOp')
    def _tfr_control_flow_range_for(x):
      # TODO(fengliuai): use len(x) instead
      n = 10
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/ztunnelserver.go

    	ret := make(chan updateResponse, 1)
    	req := updateRequest{
    		Update: data,
    		Fd:     fd,
    		Resp:   ret,
    	}
    	select {
    	case z.Updates <- req:
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    
    	select {
    	case r := <-ret:
    		return r.resp, r.err
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            def html = readGeneratedHtml("index")
    
            then:
            def rows = html.select("table tbody tr")
            rows.size() == 3
    
            def rootProject = rows[0].select("td")
            rootProject[0].text() == "root project 'fooProject'"
            rootProject[1].text() == "dummy description"
    
            def projectA = rows[1].select("td")
            projectA[0].text() == "project ':a'"
            projectA[1].text() == ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. test/newinline.go

    func select1(x, y chan bool) int { // ERROR "can inline select1" "x does not escape" "y does not escape"
    	select {
    	case <-x:
    		return 1
    	case <-y:
    		return 2
    	}
    }
    
    func select2(x, y chan bool) { // ERROR "can inline select2" "x does not escape" "y does not escape"
    loop: // test that labeled select can be inlined.
    	select {
    	case <-x:
    		break loop
    	case <-y:
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/controller_test.go

    	configCh := make(chan config.Config)
    
    	configHandler := func(_, curr config.Config, event model.Event) {
    		configCh <- curr
    	}
    
    	wait := func() config.Config {
    		select {
    		case x := <-configCh:
    			return x
    		case <-time.After(time.Second * 10):
    			t.Fatalf("timed out waiting for config")
    		}
    		return config.Config{}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

        }
    
        List<String> getReports() {
            dashboard.select("div#content li a")*.text()
        }
    
        void hasUnavailableReport(String task, String name) {
            assert unavailableReports.contains("Report generated by task '$task' ($name)" as String)
        }
    
        List<String> getUnavailableReports() {
            dashboard.select("div#content li span.unavailable")*.text()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. cmd/bucket-replication-stats.go

    	if r == nil {
    		return
    	}
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-r.wTimer.C:
    			r.wlock.Lock()
    			r.workers.update()
    			r.wlock.Unlock()
    
    		}
    	}
    }
    
    func (r *ReplicationStats) collectQueueMetrics(ctx context.Context) {
    	if r == nil {
    		return
    	}
    
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-r.qTimer.C:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top