Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 286 for relativize (0.12 sec)

  1. src/main/webapp/css/bootstrap.min.css.map

    none;\n}\n\n.popover-body {\n  padding: 0.5rem 0.75rem;\n  color: #212529;\n}\n\n.carousel {\n  position: relative;\n}\n\n.carousel.pointer-event {\n  -ms-touch-action: pan-y;\n  touch-action: pan-y;\n}\n\n.carousel-inner {\n  position: relative;\n  width: 100%;\n  overflow: hidden;\n}\n\n.carousel-inner::after {\n  display: block;\n  clear: both;\n  content: \"\";\n}\n\n.carousel-item {\n  position: relative;\n  display: none;\n  float: left;\n  width: 100%;\n  margin-right: -100%;\n  -webkit-backface-visibility:...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * ```
     * q: cute #puppies
     * f: images
     * ```
     *
     * In addition to composing URLs from their component parts and decomposing URLs into their
     * component parts, this class implements relative URL resolution: what address you'd reach by
     * clicking a relative link on a specified page. For example:
     *
     * ```java
     * HttpUrl base = HttpUrl.parse("https://www.youtube.com/user/WatchTheDaily/videos");
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/ResourcesTest.java

        assertThat(e)
            .hasMessageThat()
            .isEqualTo(
                "resource com/google/common/io/testdata/i18n.txt"
                    + " relative to com.google.common.io.ResourcesTest not found.");
      }
    
      public void testGetResource_relativePath() {
        assertNotNull(Resources.getResource(getClass(), "testdata/i18n.txt"));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

            hints.put(MavenModelMerger.CHILD_PATH_ADJUSTMENT, getChildPathAdjustment(child, parent, childPath));
            return merger.merge(child, parent, false, hints);
        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * as a file or directory. The second parameter is a relative path from
     * the <code>parent SmbFile</code>. See the description above for examples
     * of using the second <code>name</code> parameter.
     *
     * @param   context A base <code>SmbFile</code>
     * @param   name A path string relative to the <code>parent</code> paremeter
     * @throws  MalformedURLException
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

      border: 1px solid #eee;
      padding: 2px;
      outline: 0;
      font-size: 12px;
    }
    
    .daterangepicker .calendar-time {
      text-align: center;
      margin: 4px auto 0 auto;
      line-height: 30px;
      position: relative;
    }
    
    .daterangepicker .calendar-time select.disabled {
      color: #ccc;
      cursor: not-allowed;
    }
    
    .daterangepicker .drp-buttons {
      clear: both;
      text-align: right;
      padding: 8px;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    http://example.com/\u202E/foo/\u202D/bar  s:http h:example.com p:/%E2%80%AE/foo/%E2%80%AD/bar
    
    # Based on http://trac.webkit.org/browser/trunk/LayoutTests/fast/url/script-tests/relative.js
    http://www.google.com/foo?bar=baz# about:blank s:http h:www.google.com p:/foo q:?bar=baz f:#
    http://www.google.com/foo?bar=baz#\s\u00BB  s:http h:www.google.com p:/foo q:?bar=baz f:#\s\u00BB
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/bin/mvn

    cygwin=false;
    mingw=false;
    case "`uname`" in
      CYGWIN*) cygwin=true;;
      MINGW*) mingw=true;;
    esac
    
    ## resolve links - $0 may be a link to Maven's home
    PRG="$0"
    
    # need this for relative symlinks
    while [ -h "$PRG" ] ; do
      ls=`ls -ld "$PRG"`
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

        abstract RegularFileProperty getClassMetaDataFile();
    
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        abstract RegularFileProperty getPluginsMetaDataFile();
    
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputDirectory
        abstract DirectoryProperty getClassDocbookDirectory();
    
        @OutputFile
        abstract RegularFileProperty getDestFile();
    
        @OutputFile
        abstract RegularFileProperty getLinksFile();
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        private static final int DEFAULT_MAX_DATA_COUNT =
                Config.getInt( "jcifs.smb1.smb.client.transaction_buf_size",
                        SmbComTransaction.TRANSACTION_BUF_SIZE ) - 512;
    
        // relative to headerStart
        private static final int PRIMARY_SETUP_OFFSET        = 61;
        private static final int SECONDARY_PARAMETER_OFFSET  = 51;
    
        private static final int DISCONNECT_TID      = 0x01;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
Back to top