Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 668 for detective (0.22 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    The stdversion analyzer reports references to symbols in the standard
    library that were introduced by a Go release higher than the one in
    force in the referring file. (Recall that the file's Go version is
    defined by the 'go' directive its module's go.mod file, or by a
    "//go:build go1.X" build tag at the top of the file.)
    
    The analyzer does not report a diagnostic for a reference to a "too
    new" field or method of a type that is itself "too new", as this may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments.golden

    // The following is a legal line directive.
    //
    //line foo:1
    func _() {
    	_ = 0
    	// The following is a legal line directive. It must not be indented:
    //line foo:2
    	_ = 1
    
    	// The following is not a legal line directive (it doesn't start in column 1):
    	//line foo:2
    	_ = 2
    
    	// The following is not a legal line directive (missing colon):
    //line foo -3
    	_ = 3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  3. src/math/rand/v2/auto_test.go

    package rand_test
    
    import (
    	. "math/rand/v2"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    	// Pull out 10 int64s from the global source
    	// and then check that they don't appear in that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     *
     * <p>
     * A value source implementation doesn't have to be thread-safe, as the single call
     * to {@link #obtain()} is synchronized.
     * </p>
     *
     * <p>
     * A value source implementation is exempt from the automatic detection of work graph cache inputs.
     * For example, if the {@link #obtain()} method calls {@code System.getenv("FOO")} then changes to
     * the {@code FOO} environment variable only invalidate the cache if the value returned by the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractFileImportingScopeContextTest.kt

                    else -> true
                }
            }
        }
    
        private object Directives : SimpleDirectivesContainer() {
            val RENDER_DEFAULT_IMPORTING_SCOPE by directive("render default importing scope in test output")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            } else {
                gradle.allprojects(action);
            }
        }
    
        private boolean isIsolatedProjects() {
            return features.getIsolatedProjects().getActive().getOrElse(false);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/go/printer/testdata/comments.input

    // Print line directives correctly.
    
    // The following is a legal line directive.
    //line foo:1
    func _() {
    	_ = 0
    // The following is a legal line directive. It must not be indented:
    //line foo:2
    	_ = 1
    
    // The following is not a legal line directive (it doesn't start in column 1):
    	//line foo:2
    	_ = 2
    
    // The following is not a legal line directive (missing colon):
    //line foo -3
    	_ = 3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/CapabilitiesConflictHandler.java

        /**
         * Was the given capability already seen which might require a conflict check later?
         * This is needed to determine if also implicit capabilities need to enter conflict detection.
         */
        boolean hasSeenCapability(Capability capability);
    
        interface Candidate {
            NodeState getNode();
            Capability getCapability();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/go/token/example_test.go

    	for _, decl := range f.Decls {
    		// Get the filename, line, and column back via the file set.
    		// We get both the relative and absolute position.
    		// The relative position is relative to the last line directive.
    		// The absolute position is the exact position in the source.
    		pos := decl.Pos()
    		relPosition := fset.Position(pos)
    		absPosition := fset.PositionFor(pos, false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:09:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    func (p ProcInst) Copy() ProcInst {
    	p.Inst = bytes.Clone(p.Inst)
    	return p
    }
    
    // A Directive represents an XML directive of the form <!text>.
    // The bytes do not include the <! and > markers.
    type Directive []byte
    
    // Copy creates a new copy of Directive.
    func (d Directive) Copy() Directive { return Directive(bytes.Clone(d)) }
    
    // CopyToken returns a copy of a Token.
    func CopyToken(t Token) Token {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top