Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for rrun (0.34 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        override fun transform(outputs: TransformOutputs) {
            val inputFile = inputArtifact.get().asFile
            println("Transforming ${inputFile.name}...")
            outputs.file("${inputFile.nameWithoutExtension}-summary.txt").run {
                writeText("${inputFile.name}: ${inputFile.length()}")
            }
        }
    }
    
    val summarized = Attribute.of("summarized", Boolean::class.javaObjectType)
    dependencies {
        attributesSchema {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    that become fully typed must now be representable by the full type (constant
    sub-expression trees are left alone except for their roots). This mechanism
    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    were not present": when updateExprType visits an untyped lhs shift operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		fmt.Fprint(os.Stderr, "EOF\n")
    	}
    	stdout, stderr, _ := run(stdin, nargs)
    	if *debugGcc {
    		os.Stderr.Write(stdout)
    		os.Stderr.Write(stderr)
    	}
    	return string(stderr)
    }
    
    // runGcc runs the gcc command line args with stdin on standard input.
    // If the command exits with a non-zero exit status, runGcc prints
    // details about what was run and exits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

        try {
          Sets.cartesianProduct(set, set, set, set, set);
          fail("Expected IAE");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCartesianProduct_hashCode() {
        // Run through the same cartesian products we tested above
    
        Set<List<Integer>> degenerate = Sets.cartesianProduct();
        checkHashCode(degenerate);
    
        checkHashCode(Sets.cartesianProduct(set(1, 2)));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                request.getSystemProperties().getProperty("java.home", EMPTY) + File.separator + "..";
                        if (systemPath.startsWith(jdkHome)) {
                            msg += ". Please verify that you run Maven using a JDK and not just a JRE.";
                        }
                        addViolation(
                                problems,
                                Severity.WARNING,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        String jdkHome = request.getSystemProperties().get("java.home") + File.separator + "..";
                        if (systemPath.startsWith(jdkHome)) {
                            msg += ". Please verify that you run Maven using a JDK and not just a JRE.";
                        }
                        addViolation(
                                problems,
                                Severity.WARNING,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            }
    
        private fun FirArrayLiteral.toKtCallInfo(): KaCallInfo? {
            val arrayOfSymbol = with(analysisSession) {
    
                val type = resolvedType as? ConeClassLikeType
                    ?: return run {
                        val defaultArrayOfSymbol = arrayOfSymbol(arrayOf) ?: return null
                        val substitutor = createSubstitutorFromTypeArguments(defaultArrayOfSymbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                val firFile = targetElement.containingKtFile.getOrBuildFirFile(firResolveSession)
    
                val sessionHolder = run {
                    val firSession = firResolveSession.useSiteFirSession
                    val scopeSession = firResolveSession.getScopeSessionFor(firSession)
    
                    SessionHolderImpl(firSession, scopeSession)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top