Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 8,903 for usedBy (0.15 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

         */
        @Input
        @Deprecated
        public boolean isUploadDescriptor() {
            return false;
        }
    
        /**
         * Do not use this method, it does nothing.
         * @deprecated This class is scheduled for removal in a future version, this method <strong>should not be used</strong>.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleMetadataResolveRunner.groovy

        static boolean isGradleMetadataPublished() {
            System.getProperty(GRADLE_METADATA) == "true"
        }
    
        static boolean useIvy() {
            System.getProperty(REPOSITORY_TYPE) == "ivy"
        }
    
        static boolean useMaven() {
            System.getProperty(REPOSITORY_TYPE) == "maven"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    	"reflect"
    	. /* ERROR "imported and not used" */ "reflect"
    )
    
    import "math" /* ERROR "imported and not used" */
    import m /* ERROR "imported as m and not used" */ "math"
    import _ "math"
    
    import (
    	"math/big" /* ERROR "imported and not used" */
    	b /* ERROR "imported as b and not used" */ "math/big"
    	_ "math/big"
    )
    
    import "fmt"
    import f1 "fmt"
    import f2 "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolver.java

    @Deprecated
    public interface ArtifactResolver {
    
        ArtifactResolutionResult resolve(ArtifactResolutionRequest request);
    
        // The rest is deprecated
        // USED BY MAVEN ASSEMBLY PLUGIN 2.2-beta-2
        @Deprecated
        String ROLE = ArtifactResolver.class.getName();
    
        // USED BY SUREFIRE, DEPENDENCY PLUGIN
        @Deprecated
        ArtifactResolutionResult resolveTransitively(
                Set<Artifact> artifacts,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/bootstraptoken/v1/types.go

    // +k8s:deepcopy-gen=true
    type BootstrapToken struct {
    	// Token is used for establishing bidirectional trust between nodes and control-planes.
    	// Used for joining nodes in the cluster.
    	Token *BootstrapTokenString `json:"token" datapolicy:"token"`
    	// Description sets a human-friendly message why this token exists and what it's used
    	// for, so other administrators can know its purpose.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 01 21:11:49 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. releasenotes/notes/refactor-install-script.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a security fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:02:28 UTC 2020
    - 707 bytes
    - Viewed (0)
  7. releasenotes/notes/merge-svc.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a security fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/link2.txt

    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- text --
    The Go home page is https://go.dev/. It used to be https://golang.org. https://
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
  9. test/fixedbugs/bug423.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gc used to overflow a counter when a variable was
    // mentioned 256 times, and generate stack corruption.
    
    package main
    
    func main() {
    	F(1)
    }
    
    func F(arg int) {
    	var X interface{}
    	_ = X // used once
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 06:50:10 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

                @Override
                Object call() {
                    return GradleMetadataResolveRunner.useIvy() ? "latest.integration" : "latest.release"
                }
    
                @Override
                String toString() {
                    return GradleMetadataResolveRunner.useIvy() ? "latest.integration" : "latest.release"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top