Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,114 for checkPkg (0.23 sec)

  1. android/guava/src/com/google/common/io/IgnoreJRERequirement.java

    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.ElementType.TYPE;
    
    import java.lang.annotation.Target;
    
    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 25 20:20:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/IgnoreJRERequirement.java

    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.ElementType.TYPE;
    
    import java.lang.annotation.Target;
    
    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 13 16:19:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. test/fixedbugs/bug320.go

    	for i := 0; i < 10; i++ {
    		// 6g had a bug that caused select to pass &t to
    		// selectrecv before allocating the memory for t,
    		// which caused non-deterministic crashes.
    		// This test looks for the bug by checking that the
    		// value received actually ends up in t.
    		// If the allocation happens after storing through
    		// whatever garbage &t holds, the later reference
    		// to t in the case body will use the new pointer and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 963 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top