Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,533 for happen (0.18 sec)

  1. src/crypto/rsa/rsa.go

    			n.Mul(n, prime)
    			pminus1.Sub(prime, bigOne)
    			totient.Mul(totient, pminus1)
    		}
    		if n.BitLen() != bits {
    			// This should never happen for nprimes == 2 because
    			// crypto/rand should set the top two bits in each prime.
    			// For nprimes > 2 we hope it does not happen often.
    			continue NextSetOfPrimes
    		}
    
    		priv.D = new(big.Int)
    		e := big.NewInt(int64(priv.E))
    		ok := priv.D.ModInverse(e, totient)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/runtime/alg.go

    		s := (*structtype)(unsafe.Pointer(t))
    		for _, f := range s.Fields {
    			if f.Name.IsBlank() {
    				continue
    			}
    			h = typehash(f.Typ, add(p, f.Offset), h)
    		}
    		return h
    	default:
    		// Should never happen, as typehash should only be called
    		// with comparable types.
    		panic(errorString("hash of unhashable type " + toRType(t).string()))
    	}
    }
    
    func mapKeyError(t *maptype, p unsafe.Pointer) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      std::vector<IslandOp> path;
      bool found_path = FindPathBfs(source_op, target_op, path);
      if (!found_path) {
        // This shouldn't happen, returning an error instead of asserting so it
        // doesn't go unnoticed if it ever happens.
        target_op.emitError("no path to target op found, cannot emit warnings");
        return;
      }
    
      // Emit warnings for path.
      int node_idx = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Verify.java

     *       (such as by passing an invalid argument), use the utilities of the {@link Preconditions}
     *       class instead.
     *   <li>If checking an <i>impossible</i> condition (which <i>cannot</i> happen unless your own
     *       class or its <i>trusted</i> dependencies is badly broken), this is what ordinary Java
     *       assertions are for. Note that assertions are not enabled by default; they are essentially
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/discovery.go

    	// after a registry/config event for debouncing.
    	// This will delay the push by at least this interval, plus
    	// the time getting subsequent events. If no change is
    	// detected the push will happen, otherwise we'll keep
    	// delaying until things settle.
    	DebounceAfter time.Duration
    
    	// debounceMax is the maximum time to wait for events
    	// while debouncing. Defaults to 10 seconds. If events keep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/BloomFilterTest.java

              @Override
              public void run() {
                do {
                  // We can't have a GOLDEN_NOT_PRESENT_KEY because false positives are
                  // possible! It's false negatives that can't happen.
                  assertThat(bloomFilter.mightContain(GOLDEN_PRESENT_KEY)).isTrue();
    
                  int key = getNonGoldenRandomKey();
                  // We can't check that the key is mightContain() == false before the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    	gp := getg()
    	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
    		throw(err)
    	}
    }
    
    // Many of the following panic entry-points turn into throws when they
    // happen in various runtime contexts. These should never happen in
    // the runtime, and if they do, they indicate a serious issue and
    // should not be caught by user code.
    //
    // The panic{Index,Slice,divide,shift} functions are called by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    		// There are 2 locations where errors are generated in copystructure.Copy:
    		//  * The reflection walk over the structure fails, which should never happen
    		//  * A configurable copy function returns an error. This is only used for copying times, which never returns an error.
    		// Therefore, this should never happen
    		panic(err)
    	}
    	return copied
    }
    
    // ParseConfigs unmarshals the given YAML bytes into []Config, using a namespace.Static rather
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/internal/moddeps/moddeps_test.go

    					// module test case. (This is slow, but it happens only during
    					// test failures.)
    					gorootCopyDir = ""
    				}
    			}()
    
    			rel, err := filepath.Rel(testenv.GOROOT(t), m.Dir)
    			if err != nil {
    				t.Fatalf("filepath.Rel(%q, %q): %v", testenv.GOROOT(t), m.Dir, err)
    			}
    			r := runner{
    				Dir: filepath.Join(gorootCopyDir, rel),
    				Env: append(append(os.Environ(), modcacheEnv...),
    					// Set GOROOT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

                    append("[").
                    append(iTestResult.getMethod().getCurrentInvocationCount()).
                    append("]");
    
                StringBuilder paramsListBuilder = new StringBuilder("(");
                int i = 0;
                for (Object parameter : parameters) {
                    if (parameter == null) {
                        paramsListBuilder.append("null");
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top