Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 130 for fairy (0.07 sec)

  1. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * names also have a <code>type</code>. Types(aka Hex Codes)
     * are used to distiquish the various services on a host. <a
     * href="../../../nbtcodes.html">Here</a> is
     * a fairly complete list of NetBIOS hex codes. Scope is not used but is
     * still functional in other NetBIOS products and so for completeness it has been
     * implemented. A <code>scope</code> of <code>null</code> or <code>""</code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/LongMathTest.java

          long unused = simpleBinomial(LongMath.biggestSimpleBinomials[k], k); // mustn't throw
          if (LongMath.biggestSimpleBinomials[k] < Integer.MAX_VALUE) {
            // unless all n are fair game with this k
            try {
              simpleBinomial(LongMath.biggestSimpleBinomials[k] + 1, k);
              fail("Expected ArithmeticException");
            } catch (ArithmeticException expected) {
            }
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    	<-hogChan
    	<-lightChan
    
    	// Check that hogCount and lightCount are within a factor of
    	// 20, which indicates that both pairs of goroutines handed off
    	// the P within a time-slice to their buddy. We can use a
    	// fairly large factor here to make this robust: if the
    	// scheduler isn't working right, the gap should be ~1000X
    	// (was 5, increased to 20, see issue 52207).
    	const factor = 20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/LongMathTest.java

          long unused = simpleBinomial(LongMath.biggestSimpleBinomials[k], k); // mustn't throw
          if (LongMath.biggestSimpleBinomials[k] < Integer.MAX_VALUE) {
            // unless all n are fair game with this k
            try {
              simpleBinomial(LongMath.biggestSimpleBinomials[k] + 1, k);
              fail("Expected ArithmeticException");
            } catch (ArithmeticException expected) {
            }
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. src/runtime/chan_test.go

    		switch b := <-out; b {
    		case 1:
    			cnt1++
    		case 2:
    			cnt2++
    		default:
    			t.Fatalf("unexpected value %d on channel", b)
    		}
    	}
    	// If the select in the goroutine is fair,
    	// cnt1 and cnt2 should be about the same value.
    	// See if we're more than 10 sigma away from the expected value.
    	// 10 sigma is a lot, but we're ok with some systematic bias as
    	// long as it isn't too severe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    		return "invalid"
    	}
    	// Since dryRun could be valid with any arbitrarily long length
    	// we have to dedup and sort the elements before joining them together
    	// TODO: this is a fairly large allocation for what it does, consider
    	//   a sort and dedup in a single pass
    	return strings.Join(utilsets.NewString(dryRun...).List(), ",")
    }
    
    func cleanFieldValidation(u *url.URL) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    // of a URL path either.
    //
    // One possibility would be to make the escaped form be the lowercase
    // hexadecimal encoding of the actual path bytes. This would avoid ever
    // needing different casings of a file path, but it would be fairly illegible
    // to most programmers when those paths appeared in the file system
    // (including in file paths in compiler errors and stack traces)
    // in web server logs, and so on. Instead, we want a safe escaped form that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. docs/en/docs/alternatives.md

        * <a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank">ReDoc</a>
    
        These two were chosen for being fairly popular and stable, but doing a quick search, you could find dozens of alternative user interfaces for OpenAPI (that you can use with **FastAPI**).
    
    ### Flask REST frameworks
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

         * returns 0, but if we had a SingletonImmutableSortedSet, this might no
         * longer be the case.)
         *
         * javax.naming.Name and java.util.concurrent.Delayed might work, but
         * they're fairly obscure, we've invented our own interface and class.
         */
        Interface a = new Impl();
        Interface b = new Impl();
        ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/git.go

    		// Fetch the complete history for all refs and heads. It would be more
    		// efficient to only fetch the history from rev to tag, but that's much more
    		// complicated, and any kind of shallow fetch is fairly likely to trigger
    		// bugs in JGit servers and/or the go command anyway.
    		if err := r.fetchRefsLocked(ctx); err != nil {
    			return false, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top