Search Options

Results per page
Sort
Preferred Languages
Advance

Results 541 - 550 of 558 for getNamer (0.11 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        // normal for non-http wagons
                    } catch (Exception e) {
                        logger.debug("Could not set user agent for wagon "
                                + wagon.getClass().getName() + ": " + e);
                    }
                }
            }
    
            if (repository.getProxy() != null && logger.isDebugEnabled()) {
                logger.debug("Using proxy " + repository.getProxy().getHost() + ":"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. schema/relationship.go

    	Schema          *Schema
    	ForeignKeys     []*Field
    	ReferenceSchema *Schema
    	References      []*Field
    	OnDelete        string
    	OnUpdate        string
    }
    
    func (constraint *Constraint) GetName() string { return constraint.Name }
    
    func (constraint *Constraint) Build() (sql string, vars []interface{}) {
    	sql = "CONSTRAINT ? FOREIGN KEY ? REFERENCES ??"
    	if constraint.OnDelete != "" {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

                setRawPayload(payload);
            }
    
            if ( !verifySignature(buffer, 4, len) ) {
                throw new SMBProtocolDecodingException("Signature verification failed for " + this.getClass().getName());
            }
    
            return len;
        }
    
    
        protected int writeHeaderWireFormat ( byte[] dst, int dstIndex ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#toString()
         */
        public String toString()
        {
            return "Contributor {name=" + getName() + ", email=" + getEmail() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>Dependency</name>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

            sb.append("id=").append(this.getId());
            sb.append(",mirrorOf=").append(this.getMirrorOf());
            sb.append(",url=").append(this.getUrl());
            sb.append(",name=").append(this.getName());
            if (isBlocked()) {
                sb.append(",blocked");
            }
            sb.append("]");
            return sb.toString();
        }
                ]]>
              </code>
            </codeSegment>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Oct 08 13:46:42 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                logger.info("CANONICAL: {} -> {}", responseData.getUrl(), canonicalUrl);
                throw new ChildUrlsException(childUrlSet, this.getClass().getName() + "#putAdditionalData");
            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          throw new RuntimeException(e);
        }
      }
    
      private void checkStackTrace(ExecutionException e) {
        // Our call site for get() should be in the trace.
        int index = findStackFrame(e, getClass().getName(), "getExpectingExecutionException");
    
        assertThat(index).isNotEqualTo(0);
    
        // Above our method should be the call to get(). Don't assert on the class
        // because it could be some superclass.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

         *
         * @return The last component of the URL associated with this SMB
         *         resource or <code>smb://</code> if the resource is <code>smb://</code>
         *         itself.
         */
        String getName ();
    
    
        /**
         * Returns type of of object this <tt>SmbResource</tt> represents.
         * 
         * @return <tt>TYPE_FILESYSTEM, TYPE_WORKGROUP, TYPE_SERVER, TYPE_SHARE,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

        // present interfaces)
        NetworkInterface scopedInterface = ip.getScopedInterface();
        if (scopedInterface != null) {
          return "%" + scopedInterface.getName();
        }
        int scope = ip.getScopeId();
        if (scope != 0) {
          return "%" + scope;
        }
        return "";
      }
    
      /**
       * Identify and mark the longest run of zeroes in an IPv6 address.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

                return t;
            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public String getName () {
            return this.fileLocator.getName();
        }
    
    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top