Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 169 for Discovered (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    ====
    
    In general, forcing dependencies is done to downgrade a dependency.
    There might be different use cases for downgrading:
    
    - a bug was discovered in the latest release
    - your code depends on a lower version which is not binary compatible
    - your code doesn't depend on the code paths which need a higher version of a dependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    <7> Set a description to be displayed on the portal. It provides useful information to people who want to use your plugin.
    <8> Specifies the categories your plugin covers. It makes the plugin more likely to be discovered by people needing its functionality.
    
    For example, consider the configuration for the https://plugins.gradle.org/plugin/org.ysb33r.gradletest[GradleTest plugin], already published to the {portal}.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/compute.go

    		verMsg := []string{}
    		for version, nodes := range kubeAPIServerVersions {
    			verMsg = append(verMsg, fmt.Sprintf("%s on nodes %v", version, nodes))
    		}
    		klog.Warningf("Different API server versions in the cluster were discovered: %v. Please upgrade your control plane"+
    			" nodes to the same version of Kubernetes", strings.Join(verMsg, ", "))
    	}
    
    	// Get the lastest cluster version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

            executed(":buildB:b1:jar", ":resolve", ":buildB:b2:jar")
            notExecuted(":resolveCompile")
        }
    
        def "new substitutions can be discovered while building the task graph for the first level included builds"() {
            given:
            def firstLevel = (1..2).collect { "firstLevel$it" }
    
            buildA.buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        var i = 0
        while (i < references.size) {
          val reference = references[i]
    
          if (reference.get() != null) {
            i++
            continue
          }
    
          // We've discovered a leaked call. This is an application bug.
          val callReference = reference as CallReference
          val message =
            "A connection to ${connection.route().address.url} was leaked. " +
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         *
         * There are however cases, where a certain configuration should not apply these rules when resolving.
         * For example, if a binary version of a module should be discovered that is also represented by
         * a project in another build.
         *
         * This property may be used to deactivate these global substitution rules.
         *
         * @since 7.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

        }
    
        private void printWarnings() {
            if (hasMissingKeys || hasFailedVerification) {
                StringBuilder sb = new StringBuilder("A verification file was generated but some problems were discovered:\n");
                if (hasMissingSignatures) {
                    sb.append("   - some artifacts aren't signed or the signature couldn't be retrieved.");
                    sb.append("\n");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_client.go

    	)
    }
    
    // CSI client getter with cache.
    // This provides a method to initialize CSI client with driver name and caches
    // it for later use. When CSI clients have not been discovered yet (e.g.
    // on kubelet restart), client initialization will fail. Users of CSI client (e.g.
    // mounter manager and block mapper) can use this to delay CSI client
    // initialization until needed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/likelyadjust.go

    	nBlocks int32 // Number of blocks in this loop but not within inner loops
    	depth   int16 // Nesting depth of the loop; 1 is outermost. Initialized by calculateDepths().
    	isInner bool  // True if never discovered to contain a loop
    
    	// register allocation uses this.
    	containsUnavoidableCall bool // True if all paths through the loop have a call
    }
    
    // outerinner records that outer contains inner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

            }
            else -> throw expected
          }
        }
      }
    
      /**
       * Not checking the CA bit created a vulnerability in old OkHttp releases. It is exploited by
       * triggering different chains to be discovered by the TLS engine and our chain cleaner. In this
       * attack there's several different chains.
       *
       *
       * The victim's gets a non-CA certificate signed by a CA, and pins the CA root and/or
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top