Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 746 for checkedBy (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    - Version-specific caches in all `caches/<GRADLE_VERSION>/` directories are checked for whether they are still in use.
    +
    If not, directories for release versions are deleted after 30 days of inactivity, and snapshot versions after 7 days.
    - Shared caches in `caches/` (e.g., `jars-*`) are checked for whether they are still in use.
    +
    If no Gradle version still uses them, they are deleted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. test/fixedbugs/bug392.dir/pkg3.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Use the functions in pkg2.go so that the inlined
    // forms get type-checked.
    
    package pkg3
    
    import "./pkg2"
    
    var x = pkg2.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 303 bytes
    - Viewed (0)
  3. test/index1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of index and slice bounds checks.
    // The output is error checked.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 305 bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/tree.css

    .jstree-default .jstree-no-checkboxes .jstree-checkbox { display:none !important; }
    .jstree-default .jstree-checked > a > .jstree-checkbox { background-position:-38px -19px; }
    .jstree-default .jstree-unchecked > a > .jstree-checkbox { background-position:-2px -19px; }
    .jstree-default .jstree-undetermined > a > .jstree-checkbox { background-position:-20px -19px; }
    .jstree-default .jstree-checked > a > .jstree-checkbox:hover { background-position:-38px -37px; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:29 UTC 2014
    - 5.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/importdecl1/importdecl1a.go

    package importdecl1
    
    import "go/ast"
    import . "unsafe"
    
    var _ Pointer // use dot-imported package unsafe
    
    // Test cases for issue 23914.
    
    type A interface {
    	// Methods m1, m2 must be type-checked in this file scope
    	// even when embedded in an interface in a different
    	// file of the same package.
    	m1() ast.Node
    	m2() Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 521 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/.gitattributes

    #
    # Windows users contributing to Go will need to use a modern version
    # of git and editors capable of LF line endings.
    #
    # Windows .bat files are known to have multiple bugs when run with LF
    # endings. So if they are checked in with CRLF endings, there should
    # be a test like the one in test/winbatch.go in the go repository.
    # (See golang.org/issue/37791.)
    #
    # See golang.org/issue/9281.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 545 bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/AbstractSortedMultiset.java

          @ParametricNullness E fromElement,
          BoundType fromBoundType,
          @ParametricNullness E toElement,
          BoundType toBoundType) {
        // These are checked elsewhere, but NullPointerTester wants them checked eagerly.
        checkNotNull(fromBoundType);
        checkNotNull(toBoundType);
        return tailMultiset(fromElement, fromBoundType).headMultiset(toElement, toBoundType);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/go/types/eval.go

    // set.
    //
    // The meaning of the parameters fset, pkg, and pos is the
    // same as in [CheckExpr]. An error is returned if expr cannot
    // be parsed successfully, or the resulting expr AST cannot be
    // type-checked.
    func Eval(fset *token.FileSet, pkg *Package, pos token.Pos, expr string) (_ TypeAndValue, err error) {
    	// parse expressions
    	node, err := parser.ParseExprFrom(fset, "eval", expr, 0)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue3552.dir/two.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Use the functions in one.go so that the inlined
    // forms get type-checked.
    
    package two
    
    import "./one"
    
    func use() {
    	var t one.T
    	var u one.U
    	var v one.V
    	var w one.W
    
    	_ = t.F()
    	_ = u.F()
    	_ = v.F()
    	_ = w.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 380 bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ImmediateFuture.java

      }
    
      @Override
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      public void addListener(Runnable listener, Executor executor) {
        checkNotNull(listener, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
        try {
          executor.execute(listener);
        } catch (Exception e) { // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top