Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,121 for Checking (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

        }
    }
    
    class SantaTrackerConfigurationCacheWorkaround {
        static void beforeBuild(File checkoutDir, File gradleHome) {
            // Workaround for Android Gradle plugin checking for the presence of these directories at configuration time,
            // which invalidates configuration cache if their presence changes. Create these directories before the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/go/types/context.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    	"strconv"
    	"strings"
    	"sync"
    )
    
    // This file contains a definition of the type-checking context; an opaque type
    // that may be supplied by users during instantiation.
    //
    // Contexts serve two purposes:
    //  - reduce the duplication of identical instances
    //  - short-circuit instantiation cycles
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_svn.txt

    # If vcs-test.golang.org isn't in the user's known_hosts file, this will result
    # in an ssh prompt, which will stop 'go test' entirely
    #
    # Unfortunately, there isn't a way to globally disable host checking for ssh,
    # without modifying the real system's or user's configs. Changing $HOME won't
    # affect ssh either, as it ignores the environment variable entirely.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPromise.java

        // These methods return strings rather than types because it may be more complicated than what is able to be expressed via a ModelType.
        // Also, we don't want to encourage compatibility checking occurring by looping through such types as we have more options for optimising the compatibility check internally.
        // Also also, these methods are only called for reporting so values should typically not be precomputed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/UnpackingVisitor.java

        }
    
        public void add(@Nullable Object element) {
            if (element instanceof FileCollectionInternal) {
                // FileCollection is-a Iterable, Buildable and TaskDependencyContainer, so check before checking for these things
                visitor.accept((FileCollectionInternal) element);
                return;
            }
            if (element instanceof DirectoryTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/toolchain/path_unix.go

    		return "", false
    	}
    
    	// Mimicking exec.findExecutable here.
    	// ENOSYS means Eaccess is not available or not implemented.
    	// EPERM can be returned by Linux containers employing seccomp.
    	// In both cases, fall back to checking the permission bits.
    	err := unix.Eaccess(filepath.Join(dir, de.Name()), unix.X_OK)
    	if (err == syscall.ENOSYS || err == syscall.EPERM) && info.Mode()&0111 != 0 {
    		err = nil
    	}
    	if err != nil {
    		return "", false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/rename_and_verify_wheels.sh

    # Check and rename wheels with auditwheel. Inserts the platform tags like
    # "manylinux_xyz" into the wheel filename.
    set -euxo pipefail
    
    for wheel in /tf/pkg/*.whl; do
      echo "Checking and renaming $wheel..."
      time python3 -m auditwheel repair --plat manylinux2014_aarch64 "$wheel" --wheel-dir /tf/pkg 2>&1 | tee check.txt
    
      # We don't need the original wheel if it was renamed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

        @Override
        protected ObjectiveProperties newObjectiveProperties(final String resourcePath, final PropertyFilter propertyFilter) {
            return new ObjectiveProperties(resourcePath) { // for e.g. checking existence and filtering value
                Cache<String, String> cache = CacheBuilder.newBuilder().build();
    
                @Override
                public String get(final String propertyKey) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/Console.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the property is not to be taken into account for up-to-date checking,
     * because its value only influences the console output of the task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/os/exec/exec_linux_test.go

    // If we are using cgo, we will call malloc when creating a new thread.
    // That can break TestExtraFiles if we create a new thread that creates
    // a new arena and opens the /sys file while we are checking for open
    // file descriptors. Work around the problem by creating threads up front.
    // See issue 25628.
    
    package exec_test
    
    import (
    	"os"
    	"sync"
    	"syscall"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top