Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for irides (0.48 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                hasTooManyProblems -> {
                    TooManyConfigurationCacheProblemsException(summary.causes, summaryText)
                }
    
                else -> null
            }
        }
    
        /**
         * Writes the report to the given [reportDir] if any [diagnostics][DiagnosticKind] have
         * been reported in which case a warning is also logged with the location of the report.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

        the same other JDK instance without hardcoding absolute paths into the {@code pom.xml}
        and without configuring every plugin that require path to JDK tools.</p>
    
        @see <a href="/guides/mini/guide-using-toolchains.html">Guide to Using Toolchains</a>
        ]]></description>
    
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.toolchain.model</value>
        </default>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    When compiling a single main package, build writes the resulting
    executable to an output file named after the last non-major-version
    component of the package import path. The '.exe' suffix is added
    when writing a Windows executable.
    So 'go build example/sam' writes 'sam' or 'sam.exe'.
    'go build example.com/foo/v2' writes 'foo' or 'foo.exe', not 'v2.exe'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/cmds.go

    	for i, arg := range rawArgs {
    		if !strings.HasPrefix(arg, "-") {
    			return []int{i}
    		}
    		if arg == "--" {
    			return []int{i + 1}
    		}
    	}
    	return nil
    }
    
    // Cat writes the concatenated contents of the named file(s) to the script's
    // stdout buffer.
    func Cat() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "concatenate files and print to the script's stdout buffer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ExecutionList.java

        // drop the contract on the method that enforces this queue like behavior since depending on it
        // is likely to be a bug anyway.
    
        // N.B. All writes to the list and the next pointers must have happened before the above
        // synchronized block, so we can iterate the list without the lock held here.
        RunnableExecutorPair reversedList = null;
        while (list != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/cache.go

    	if err != nil {
    		return "", nil, errNotCached
    	}
    	data, err = robustio.ReadFile(file)
    	if err != nil {
    		return file, nil, errNotCached
    	}
    	return file, data, nil
    }
    
    // writeDiskStat writes a stat result cache entry.
    // The file name must have been returned by a previous call to readDiskStat.
    func writeDiskStat(ctx context.Context, file string, info *RevInfo) error {
    	if file == "" {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements the Check function, which drives type-checking.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	. "internal/types/errors"
    	"sync/atomic"
    )
    
    // nopos indicates an unknown position
    var nopos syntax.Pos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	    Sets -cover.
    
    	-cpuprofile cpu.out
    	    Write a CPU profile to the specified file before exiting.
    	    Writes test binary as -c would.
    
    	-memprofile mem.out
    	    Write an allocation profile to the file after all tests have passed.
    	    Writes test binary as -c would.
    
    	-memprofilerate n
    	    Enable more precise (and expensive) memory allocation profiles by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * transformation however contradicts the other use case of precisely obeying the repository's layout. The below
             * flag tries to detect which use case applies to make both plugins happy.
             */
            realLocalRepo = (layout instanceof DefaultRepositoryLayout) && "local".equals(delegate.getId());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RangeMap.java

       * returned from {@link #asMapOfRanges} will be different if there were existing entries which
       * connect to the given range and value.
       *
       * <p>Even if the input range is empty, if it is connected on both sides by ranges mapped to the
       * same value those two ranges will be coalesced.
       *
       * <p><b>Note:</b> coalescing requires calling {@code .equals()} on any connected values, which
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top