Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for Ufour (0.04 sec)

  1. src/net/http/cookie_test.go

    		"cookie-2=two; Max-Age=3600",
    	},
    	{
    		&Cookie{Name: "cookie-3", Value: "three", Domain: ".example.com"},
    		"cookie-3=three; Domain=example.com",
    	},
    	{
    		&Cookie{Name: "cookie-4", Value: "four", Path: "/restricted/"},
    		"cookie-4=four; Path=/restricted/",
    	},
    	{
    		&Cookie{Name: "cookie-5", Value: "five", Domain: "wrong;bad.abc"},
    		"cookie-5=five",
    	},
    	{
    		&Cookie{Name: "cookie-6", Value: "six", Domain: "bad-.abc"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    import java.util.jar.Attributes
    
    /**
     * Apply this plugin to let a project build 'Gradle distributions'.
     * When the plugin is applied, the project will offer four different distributions (see also [GradleDistributionSpecs]):
     *
     * - Bin
     * - Normalized (Bin without timestamped version)
     * - All (Bin + Src + Docs)
     * - Docs (only Docs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/unsafe/unsafe.go

    // part of the unsafe package. It represents any arbitrary integer type.
    type IntegerType int
    
    // Pointer represents a pointer to an arbitrary type. There are four special operations
    // available for type Pointer that are not available for other types:
    //   - A pointer value of any type can be converted to a Pointer.
    //   - A Pointer can be converted to a pointer value of any type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/time/format_test.go

    	// Accept any number of fractional second digits (including none) for .999...
    	// In Go 1, .999... was completely ignored in the format, meaning the first two
    	// cases would succeed, but the next four would not. Go 1.1 accepts all six.
    	// decimal "." separator.
    	{"", "2006-01-02 15:04:05.9999 -0700 MST", "2010-02-04 21:00:57 -0800 PST", true, false, 1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. src/math/rand/v2/rand.go

    	//	}
    	//
    	// That still leaves an expensive 64-bit division that we would rather avoid.
    	// We know that thresh < n, and n is usually much less than 2⁶⁴, so we can
    	// avoid the last four lines unless lo < n.
    	//
    	// See also:
    	// https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction
    	// https://lemire.me/blog/2016/06/30/fast-random-shuffling
    	hi, lo := bits.Mul64(r.Uint64(), n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	Feature string // everything about the feature other than the package
    	Issue   int    // the issue that introduced the feature, or 0 if none
    }
    
    // This regexp has four capturing groups: package, build, feature and issue.
    var apiFileLineRegexp = regexp.MustCompile(`^pkg ([^ \t]+)[ \t]*(\([^)]+\))?, ([^#]*)(#\d+)?$`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/SetsTest.java

        Set<Object> zero = ImmutableSet.of();
        Set<Set<Object>> one = powerSet(zero);
        Set<Set<Set<Object>>> two = powerSet(one);
        Set<Set<Set<Set<Object>>>> four = powerSet(two);
        Set<Set<Set<Set<Set<Object>>>>> sixteen = powerSet(four);
        Set<Set<Set<Set<Set<Set<Object>>>>>> sixtyFiveThousandish = powerSet(sixteen);
        assertEquals(1 << 16, sixtyFiveThousandish.size());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SetsTest.java

        Set<Object> zero = ImmutableSet.of();
        Set<Set<Object>> one = powerSet(zero);
        Set<Set<Set<Object>>> two = powerSet(one);
        Set<Set<Set<Set<Object>>>> four = powerSet(two);
        Set<Set<Set<Set<Set<Object>>>>> sixteen = powerSet(four);
        Set<Set<Set<Set<Set<Set<Object>>>>>> sixtyFiveThousandish = powerSet(sixteen);
        assertEquals(1 << 16, sixtyFiveThousandish.size());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func.go

    	v.argstorage[0] = arg0
    	v.argstorage[1] = arg1
    	v.argstorage[2] = arg2
    	arg0.Uses++
    	arg1.Uses++
    	arg2.Uses++
    	return v
    }
    
    // NewValue4 returns a new value in the block with four arguments and zero aux values.
    func (b *Block) NewValue4(pos src.XPos, op Op, t *types.Type, arg0, arg1, arg2, arg3 *Value) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = 0
    	v.Args = []*Value{arg0, arg1, arg2, arg3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/image/gif/writer_test.go

    	// first (and in this case only) frame's width and height.
    	//
    	// A Config only specifies a width and height (two integers) while an
    	// image.Image's Bounds method returns an image.Rectangle (four integers).
    	// For a gif.GIF, the overall bounds' top-left point is always implicitly
    	// (0, 0), and any frame whose bounds have a negative X or Y will be
    	// outside those overall bounds, so encoding should fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top