Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 216 for highest (0.76 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                    filter { it.group == "xml-apis" }.forEach {
                        it.version { require("1.4.01") }
                        it.because("Gradle has trouble with the versioning scheme and pom redirects in higher versions")
                    }
                }
            }
        }
    }
    
    
    abstract class ReplaceCglibNodepWithCglibRule : ComponentMetadataRule {
        override fun execute(context: ComponentMetadataContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, the "deleted" dependency contains an imported package, but
    # Go 1.16 selects a higher version (in which that package has been deleted).
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/crypto/rsa/pkcs1v15.go

    	}
    
    	return
    }
    
    // These are ASN1 DER structures:
    //
    //	DigestInfo ::= SEQUENCE {
    //	  digestAlgorithm AlgorithmIdentifier,
    //	  digest OCTET STRING
    //	}
    //
    // For performance, we don't use the generic ASN1 encoder. Rather, we
    // precompute a prefix of the digest value that makes a valid ASN1 DER string
    // with the correct contents.
    var hashPrefixes = map[crypto.Hash][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. README.md

    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    
    Guava comes in two flavors:
    
    *   The JRE flavor requires JDK 1.8 or higher.
    *   If you need support for Android, use
        [the Android flavor](https://github.com/google/guava/wiki/Android). You can
        find the Android Guava source in the [`android` directory].
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//      is different based on the number of cores.
    		//   Option b: Set HostConfig.NanoCpus integer <int64> - CPU quota in units of 10e-9 CPUs. Moby scales this to the Windows job object
    		//      resolution of 1-10000, so it's higher resolution than option a.
    		//      src: https://github.com/moby/moby/blob/10866714412aea1bb587d1ad14b2ce1ba4cf4308/daemon/oci_windows.go#L426
    		// Part three - CRI & ContainerD's implementation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, Go 1.17 prunes out a (transitive and otherwise-irrelevant)
    # requirement on a retracted higher version of a dependency.
    # However, when Go 1.16 reads the same requirements from the go.mod file,
    # it does not prune out that requirement, and selects the retracted version.
    #
    # The Go 1.16 module graph looks like:
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/GeneratePluginAdaptersTask.java

                writer.println("          throw new RuntimeException(\"Precompiled Groovy script plugins require Gradle \"+MIN_SUPPORTED_GRADLE_VERSION+\" or higher\");");
                writer.println("      }");
                writer.println("  }");
                writer.println("}");
                writer.println("//CHECKSTYLE:ON");
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 22:50:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

            def spec = new GradleVersionSpec("3.0")
    
            when:
            spec.toSpec("<1.3")
    
            then:
            thrown(RuntimeException)
        }
    
        def "no RuntimeExcpetion is thrown if a version higher than the minimal tested is specified"() {
            given:
            def versionSpec = new GradleVersionSpec("3.0")
    
            when:
            def spec = versionSpec.toSpec(">=3.2")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	}
    
    	// Encode meta-data.
    	var sws slicewriter.WriteSeeker
    	digest, err := p.mdb.Emit(&sws)
    	if err != nil {
    		log.Fatalf("encoding meta-data: %v", err)
    	}
    	payload := sws.BytesWritten()
    	blobs := [][]byte{payload}
    
    	// Write meta-data file directly.
    	mfw := encodemeta.NewCoverageMetaFileWriter(outpath, of)
    	err = mfw.Write(digest, blobs, cmode, cgran)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pkg/envoy/proxy.go

    	TestOnly    bool
    	AgentIsRoot bool
    }
    
    // NewProxy creates an instance of the proxy control commands
    func NewProxy(cfg ProxyConfig) Proxy {
    	// inject tracing flag for higher levels
    	var args []string
    	logLevel, componentLogs := splitComponentLog(cfg.LogLevel)
    	if logLevel != "" {
    		args = append(args, "-l", logLevel)
    	}
    	if len(componentLogs) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top