Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 572 for addLine (1.34 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

    A web-based, searchable dependency report is available by adding the --scan option."""
        }
    
        def "shows selected versions in case of a multi-phase conflict"() {
            given:
            mavenRepo.module("foo", "foo", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    // word size, we can extend x and m appropriately and use the
    // signed multiply instruction.  For n == word size,
    // we must use the signed multiply high and correct
    // the result by adding x*2^n.
    //
    // Adding 1 if x<0 is done by subtracting x>>(n-1).
    
    func smagicOK(n uint, c int64) bool {
    	if c < 0 {
    		// Doesn't work for negative c.
    		return false
    	}
    	// Doesn't work for 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

    public final class MoreExecutors {
      private MoreExecutors() {}
    
      /**
       * Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application
       * is complete. It does so by using daemon threads and adding a shutdown hook to wait for their
       * completion.
       *
       * <p>This is mainly for fixed thread pools. See {@link Executors#newFixedThreadPool(int)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            JvmFeatureInternal mainFeature = createMainFeature(project, sourceSets);
            component.getFeatures().add(mainFeature);
    
            // TODO: This process of manually adding variants to the component should be handled automatically when adding the feature to the component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

    // (for example, there are quantization parameters propagated from the previous
    // iteration), this process stops if the existing parameters are the immutable,
    // or adding `requantize` op to resolve the conflicts.
    //
    // After the algorithm is converged, pairs of `quantfork::QuantizeCastOp` and
    // `quantfork::DequantizeCastOp` are inserted to the right position to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    3. You <<#sec:upgrading_wrapper,upgrade the Wrapper>> to a new version of Gradle.
    
    The following sections explain each of these use cases in more detail.
    
    [[sec:adding_wrapper]]
    == Adding the Gradle Wrapper
    
    Generating the Wrapper files requires an installed version of the Gradle runtime on your machine as described in <<installation.adoc#installation,Installation>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. tests/integration/README.md

    [istio.io/istio/pkg/test/framework](https://github.com/istio/istio/tree/master/pkg/test/framework).
    
    ## Table of Contents
    
    1. [Overview](#overview)
    1. [Writing Tests](#writing-tests)
        1. [Adding a Test Suite](#adding-a-test-suite)
        1. [Sub-Tests](#sub-tests)
        1. [Parallel Tests](#parallel-tests)
        1. [Using Components](#using-components)
        1. [Writing Components](#writing-components)
    1. [Running Tests](#running-tests)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    		return nil, err
    	}
    
    	if len(usersToCreate) > 0 {
    		klog.V(klogLevel).Infof("Adding users: %s", entriesToString(usersToCreate))
    	}
    	if len(groupsToCreate) > 0 {
    		klog.V(klogLevel).Infof("Adding groups: %s", entriesToString(groupsToCreate))
    	}
    
    	// Add users and groups.
    	fileUsers = addEntries(fileUsers, usersToCreate, createUser)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/15009")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            // in Java sources as well, even though the parameters are there in the bytecode. Since metadata stores JVM signatures, we're
            // adding the name/ordinal parameters manually.
            append("Ljava/lang/String;")
            append("I")
        }
        for (param in method.parameterList.parameters) {
            append(getBinaryPresentationWithCorrection(param.type))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top