Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 668 for detective (0.17 sec)

  1. src/cmd/go/internal/workcmd/init.go

    directory.
    
    go work init optionally accepts paths to the workspace modules as
    arguments. If the argument is omitted, an empty workspace with no
    modules will be created.
    
    Each argument path is added to a use directive in the go.work file. The
    current go version will also be listed in the go.work file.
    
    See the workspaces reference at https://go.dev/ref/mod#workspaces
    for more information.
    `,
    	Run: runInit,
    }
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    internal symbols in the standard library (including the runtime) that
    are not marked with `//go:linkname` on their definitions.
    Similarly, the linker disallows references to such symbols from assembly
    code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/base/link.go

    	sep := "."
    	if ReservedImports[prefix] {
    		sep = ":"
    	}
    	return linksym(prefix, prefix+sep+name, abi)
    }
    
    // Linkname returns the linker symbol for the given name as it might
    // appear within a //go:linkname directive.
    func Linkname(name string, abi obj.ABI) *obj.LSym {
    	return linksym("_", name, abi)
    }
    
    // linksym is an internal helper function for implementing the above
    // exported APIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeWithMacroFunctionCallExpression.java

    import com.google.common.collect.ImmutableList;
    import org.gradle.language.nativeplatform.internal.Expression;
    import org.gradle.language.nativeplatform.internal.IncludeType;
    
    import java.util.List;
    
    /**
     * An #include directive whose body is a macro function call.
     */
    public class IncludeWithMacroFunctionCallExpression extends AbstractInclude {
        private final String name;
        private final boolean isImport;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/tidy.go

    The -diff flag causes tidy not to modify go.mod or go.sum but
    instead print the necessary changes as a unified diff. It exits
    with a non-zero code if the diff is not empty.
    
    The -go flag causes tidy to update the 'go' directive in the go.mod
    file to the given version, which may change which module dependencies
    are retained as explicit requirements in the go.mod file.
    (Go versions 1.17 and higher retain more requirements in order to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/SourceIncludesResolver.java

        }
    
        interface IncludeFile {
            boolean isQuotedInclude();
            String getPath();
            File getFile();
            HashCode getContentHash();
        }
    
        /**
         * Resolves the given include directive to zero or more include files.
         */
        IncludeResolutionResult resolveInclude(File sourceFile, Include include, MacroLookup visibleMacros);
    
        /**
         * Resolves the given include path to zero or one include file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/JarFilePackageListerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.detection
    
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import spock.lang.Issue
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/input.go

    func (in *Input) enabled() bool {
    	return len(in.ifdefStack) == 0 || in.ifdefStack[len(in.ifdefStack)-1]
    }
    
    func (in *Input) expectNewline(directive string) {
    	tok := in.Stack.Next()
    	if tok != '\n' {
    		in.expectText("expected newline after", directive)
    	}
    }
    
    func (in *Input) Next() ScanToken {
    	if in.peek {
    		in.peek = false
    		tok := in.peekToken
    		in.text = in.peekText
    		return tok
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/JarFilePackageLister.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.detection;
    
    import org.gradle.api.GradleException;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipFile;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/TestClassVisitor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.detection;
    
    import org.gradle.internal.classanalysis.AsmConstants;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.Opcodes;
    
    /**
     * Base class for ASM test class scanners.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top