Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,175 for reasons (0.21 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

        | org.gradle.dependency.bundling |          | external     |
        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | 11           |
       Selection reasons:
          - Was requested: we require a JDK 9 compatible bytecode generator
    
    org.ow2.asm:asm:7.1
    \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
  2. src/archive/tar/stat_unix.go

    package tar
    
    import (
    	"io/fs"
    	"os/user"
    	"runtime"
    	"strconv"
    	"sync"
    	"syscall"
    )
    
    func init() {
    	sysStat = statUnix
    }
    
    // userMap and groupMap caches UID and GID lookups for performance reasons.
    // The downside is that renaming uname or gname by the OS never takes effect.
    var userMap, groupMap sync.Map // map[int]string
    
    func statUnix(fi fs.FileInfo, h *Header, doNameLookups bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pkg/webhooks/monitoring.go

    )
    
    var (
    	// webhookConfigNameTag holds the target webhook config name for the context.
    	webhookConfigNameTag = monitoring.CreateLabel("name")
    
    	// reasonTag holds the error reason for the context.
    	reasonTag = monitoring.CreateLabel("reason")
    )
    
    var (
    	metricWebhookPatchAttempts = monitoring.NewSum(
    		"webhook_patch_attempts_total",
    		"Webhook patching attempts",
    	)
    
    	metricWebhookPatchRetries = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

    @AnalyzeClasses(packages = "org.gradle")
    public class TempDirectoryCreationControlTest {
    
        private static final String RATIONALE =
            "for security reasons, all temporary file creation should through TemporaryFileProvider";
    
        @ArchTest
        public static final ArchRule forbid_illegal_calls_to_File_createTempFile =
            classes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/rand.go

    // #include "goboringcrypto.h"
    import "C"
    import "unsafe"
    
    type randReader int
    
    func (randReader) Read(b []byte) (int, error) {
    	// Note: RAND_bytes should never fail; the return value exists only for historical reasons.
    	// We check it even so.
    	if len(b) > 0 && C._goboringcrypto_RAND_bytes((*C.uint8_t)(unsafe.Pointer(&b[0])), C.size_t(len(b))) == 0 {
    		return 0, fail("RAND_bytes")
    	}
    	return len(b), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 696 bytes
    - Viewed (0)
  6. test/README.md

    Standard library tests should be written as regular Go tests in the appropriate package.
    
    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IncrementalChangesContext.java

        protected IncrementalChangesContext(IncrementalChangesContext parent) {
            this(parent, parent.getRebuildReasons(), parent.getChanges().orElse(null));
        }
    
        /**
         * Returns the reasons to re-execute the work, empty if there's no reason to re-execute.
         */
        public ImmutableList<String> getRebuildReasons() {
            return rebuildReasons;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

        | org.gradle.dependency.bundling |          | external     |
        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | 11           |
       Selection reasons:
          - By conflict resolution: On capability log4j:log4j use slf4j in place of log4j
    
    log4j:log4j:1.2.16 -> org.slf4j:log4j-over-slf4j:1.7.10
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

                return cachingState
                    .whenDisabled()
                    .map(CachingState.Disabled::getDisabledReasons)
                    .map(reasons -> reasons.get(0));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/UnknownModelException.java

    package org.gradle.tooling;
    
    /**
     * Thrown when the client is trying to acquire a model that is unknown to the Tooling API.
     * <p>
     * The exception extends {@link UnsupportedVersionException} only for backwards compatibility reasons.
     *
     * @since 1.0-milestone-8
     */
    public class UnknownModelException extends UnsupportedVersionException {
    
        public UnknownModelException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top