Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,025 for Lannon (0.34 sec)

  1. maven-core/src/site/apt/offline-mode.apt

      It is more than simply understanding that m2 cannot go and check for the
      latest version of some snapshot artifact. If m2 is offline, SCM operations
      cannot succeed; no artifact downloads can take place, regardless of whether
      they are snapshot versions; artifact deployment cannot take place; certain
      types of tests cannot be setup, since the container used to run them cannot be
      reached or started.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

            this.syncContextFactory = Objects.requireNonNull(syncContextFactory, "syncContextFactory cannot be null");
            this.repositoryEventDispatcher =
                    Objects.requireNonNull(repositoryEventDispatcher, "repositoryEventDispatcher cannot be null");
            this.versionScheme = Objects.requireNonNull(versionScheme, "versionScheme cannot be null");
        }
    
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 10K bytes
    - Viewed (0)
  3. internal/s3select/sql/jsonpath.go

    package sql
    
    import (
    	"errors"
    
    	"github.com/bcicen/jstream"
    	"github.com/minio/simdjson-go"
    )
    
    var (
    	errKeyLookup                  = errors.New("Cannot look up key in non-object value")
    	errIndexLookup                = errors.New("Cannot look up array index in non-array value")
    	errWildcardObjectLookup       = errors.New("Object wildcard used on non-object value")
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  4. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

            this(Objects.requireNonNull(file, "file cannot be null").toPath());
        }
    
        /**
         * Creates a new source backed by the specified file.
         *
         * @param path The file, must not be {@code null}.
         * @since 4.0.0
         */
        public FileSource(Path path) {
            this.path = Objects.requireNonNull(path, "path cannot be null").toAbsolutePath();
            this.hashCode = Objects.hash(path);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       * null will be returned.
       *
       * @throws ParameterNotInstantiableException if the static methods cannot be invoked because the
       *     default value of a parameter cannot be determined.
       * @throws IllegalAccessException if the class isn't public or is nested inside a non-public
       *     class, preventing its methods from being accessible.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
  6. internal/lock/lock_windows.go

    	// the kernel is arbitrarily okay with < 248 bytes. That
    	// matches what the docs above say:
    	// "When using an API to create a directory, the specified
    	// path cannot be so long that you cannot append an 8.3 file
    	// name (that is, the directory name cannot exceed MAX_PATH
    	// minus 12)." Since MAX_PATH is 260, 260 - 12 = 248.
    	//
    	// The MSDN docs appear to say that a normal path that is 248 bytes long
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java

        @Override
        public WorkspaceRepository getRepository() {
            return this.repository;
        }
    
        @Override
        public Model findModel(Artifact artifact) {
            requireNonNull(artifact, "artifact cannot be null");
            Model model = null;
    
            for (WorkspaceReader workspaceReader : readers) {
                if (workspaceReader instanceof MavenWorkspaceReader) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                    this.share = this.canon.substring(1, firstSep);
                    this.unc = "\\";
                }
                else {
                    this.share = this.canon.substring(1, firstSep);
                    this.unc = this.canon.substring(firstSep, prefixLen + 1).replace('/', '\\');
                }
            }
            else {
                this.canon = "/";
                this.share = null;
                this.unc = "\\";
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

      }
    
      @Test fun `cannot decode malformed utc time`() {
        val bytes = "170d3139313231362333303231305a".decodeHex()
        assertFailsWith<ProtocolException> {
          Adapters.UTC_TIME.fromDer(bytes)
        }.also { expected ->
          assertThat(expected).hasMessage("Failed to parse UTCTime 191216#30210Z")
        }
      }
    
      @Test fun `cannot decode generalized time with offset`() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 31.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/events/v1/generated.proto

      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
      // This field cannot be empty for new Events and it can have at most 128 characters.
      optional string reportingInstance = 5;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
Back to top