Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,970 for usedBy (0.11 sec)

  1. src/internal/types/testdata/check/errors.go

    	c1 // ERROR "c1 (untyped int constant 991) is not used"
    	c2 // ERROR "c2 (constant 0.5 of type float32) is not used"
    	c1 /* ERROR "c1 + c2 (constant 991.5 of type float32) is not used" */ + c2
    	c3 // ERROR `c3 (untyped string constant "foo") is not used`
    
    	// variables
    	x // ERROR "x (variable of type int) is not used"
    
    	// values
    	nil // ERROR "nil is not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/vardecl.go

    // Variables declared in function bodies must be 'used'.
    type T struct{}
    func (r T) _(a, b, c int) (u, v, w int) {
    	var x1 /* ERROR "declared and not used" */ int
    	var x2 /* ERROR "declared and not used" */ int
    	x1 = 1
    	(x2) = 2
    
    	y1 /* ERROR "declared and not used" */ := 1
    	y2 /* ERROR "declared and not used" */ := 2
    	y1 = 1
    	(y1) = 2
    
    	{
    		var x1 /* ERROR "declared and not used" */ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. test/import1.go

    package main
    
    import "bufio"	// ERROR "previous|not used"
    import bufio "os"	// ERROR "redeclared|redefinition|incompatible" "imported and not used|imported as bufio and not used"
    
    import (
    	"fmt"	// ERROR "previous|not used"
    	fmt "math"	// ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt|imported as fmt and not used"
    	. "math"	// GC_ERROR "imported and not used: \x22math\x22$|imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 703 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/MetadataSourcesResolveIntegrationTest.groovy

                    edge("org.test:projectA:1.+", "org.test:projectA:1.2")
                }
            }
        }
    
        def "can resolve with only repository-specific metadata"() {
            def metadataSource = useIvy() ? "ivyDescriptor" : "mavenPom"
            buildFile << """
                repositories.all {
                    metadataSources {
                        ${metadataSource}()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

        /**
         * The name used to publish the artifact file, never <code>null</code>.
         * Defaults to the name of the module that this artifact belongs to.
         */
        String getName();
    
        /**
         * Sets the name used to publish the artifact file.
         * @param name The name.
         */
        void setName(String name);
    
        /**
         * The type used to publish the artifact file, never <code>null</code>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

    import org.gradle.testing.base.TestSuite;
    
    /**
     * This DSL element is used to add dependencies to a component, for instance a {@link TestSuite}
     *
     * <ul>
     *     <li><code>implementation</code> dependencies are used at compilation and runtime.</li>
     *     <li><code>compileOnly</code> dependencies are used only at compilation and are not available at runtime.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go

    package unix
    
    import "unsafe"
    
    // PtraceRegsArm is the registers used by arm binaries.
    type PtraceRegsArm struct {
    	Uregs [18]uint32
    }
    
    // PtraceGetRegsArm fetches the registers used by arm binaries.
    func PtraceGetRegsArm(pid int, regsout *PtraceRegsArm) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    // PtraceSetRegsArm sets the registers used by arm binaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    required by the respective component specification. Used in: module --> <!ELEMENT alt-dd (#PCDATA)> <!-- The connector element specifies the URI of a resource adapter archive file, relative to the top level of the application package. Used in: module --> <!ELEMENT connector (#PCDATA)> <!-- The context-root element specifies the context root of a web application. Used in: web --> <!ELEMENT context-root (#PCDATA)> <!-- The description element is used to provide text describing the parent element. The...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. src/runtime/linkname.go

    package runtime
    
    import _ "unsafe"
    
    // used in internal/godebug and syscall
    //go:linkname write
    
    // used by cgo
    //go:linkname _cgo_panic_internal
    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    //go:linkname cgoNoCallback
    //go:linkname gobytes
    //go:linkname gostringn
    
    // used in plugin
    //go:linkname doInit
    
    // used in math/bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         */
        WorkResult sync(Action<? super CopySpec> action);
    
        /**
         * Deletes the specified files.
         * The given action is used to configure a {@link DeleteSpec}, which is then used to delete the files.
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top