Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 696 for isSelect (0.3 sec)

  1. src/os/signal/signal_test.go

    	if ignore {
    		syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
    	}
    
    	quiesce()
    
    	select {
    	case s := <-c1:
    		t.Errorf("unexpected signal %v", s)
    	default:
    		// nothing to read - good
    	}
    
    	select {
    	case s := <-c2:
    		t.Errorf("unexpected signal %v", s)
    	default:
    		// nothing to read - good
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe.go

    }
    
    // mask64Bits returns 0xffffffff if cond is 1, and 0 otherwise.
    func mask64Bits(cond int) uint64 { return ^(uint64(cond) - 1) }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    func (v *Element) Select(a, b *Element, cond int) *Element {
    	m := mask64Bits(cond)
    	v.l0 = (m & a.l0) | (^m & b.l0)
    	v.l1 = (m & a.l1) | (^m & b.l1)
    	v.l2 = (m & a.l2) | (^m & b.l2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfiguration.java

                artifactsForThisConfiguration = artifactResults.select(artifactVariantSelector, implicitSelectionSpec, true);
            }
            return artifactsForThisConfiguration;
        }
    
        @Override
        public SelectedArtifactSet select(final Spec<? super Dependency> dependencySpec) {
            SelectedArtifactResults artifactResults = this.artifactResults.select(artifactVariantSelector, implicitSelectionSpec, false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                            attributes {
                                attribute(attribute, "select")
                            }
                        }
                    }
                }
    
                configurations {
                    ${variantToTest}.attributes.attribute(testAttribute, "select")
                }
    
                dependencies {
                    components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. istioctl/pkg/wait/wait.go

    					_, _ = fmt.Fprintf(cmd.OutOrStdout(), "Resource %s present on %d out of %d configurations across %d sidecars\n",
    						targetResource, present, present+notpresent, sdcnum)
    					return nil
    				}
    				select {
    				case newVersion := <-w.resultsChan:
    					printVerbosef(cmd, "received new target version: %s", newVersion)
    					generations = append(generations, newVersion)
    				case <-t.C:
    					printVerbosef(cmd, "tick")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  6. pilot/pkg/features/pilot.go

    		"If enabled, service entries with selectors will select pods from the cluster. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %9 = mhlo.compare  LT, %8, %6 : (tensor<32x32xi64>, tensor<32x32xi64>) -> tensor<32x32xi1>
      %10 = mhlo.add %8, %4 : tensor<32x32xi64>
      %11 = mhlo.select %9, %10, %8 : tensor<32x32xi1>, tensor<32x32xi64>
      %12 = mhlo.reshape %11 : (tensor<32x32xi64>) -> tensor<32x32x1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. src/cmd/dist/util.go

    	bghelpers.Add(maxbg)
    	for i := 0; i < maxbg; i++ {
    		go bghelper()
    	}
    }
    
    func bghelper() {
    	defer bghelpers.Done()
    	for {
    		select {
    		case <-dying:
    			return
    		case w := <-bgwork:
    			// Dying takes precedence over doing more work.
    			select {
    			case <-dying:
    				return
    			default:
    				w()
    			}
    		}
    	}
    }
    
    // bgrun is like run but runs the command in the background.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      specs.upgrade_legacy = upgrade_legacy;
      specs.prune_unused_nodes = true;
    
      if (!select_user_tf_ops.empty() && !emit_select_tf_ops) {
        llvm::errs() << "You must specify `emit-select-tf-ops=true` when passing "
                        "`select-user-tf-ops` flag.";
        return kTrFailure;
      }
    
      std::unique_ptr<tensorflow::SavedModelBundle> bundle;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. pkg/xds/server.go

    	// initialization is complete.
    	<-con.initialized
    
    	for {
    		// Go select{} statements are not ordered; the same channel can be chosen many times.
    		// For requests, these are higher priority (client may be blocked on startup until these are done)
    		// and often very cheap to handle (simple ACK), so we check it first.
    		select {
    		case req, ok := <-con.reqChan:
    			if ok {
    				if err := ctx.Process(req); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top