Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for Shetty (0.25 sec)

  1. maven-core/src/test/resources-project-builder/single-configuration-inheritance/jetty-parent.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty-parent</artifactId>
      <packaging>pom</packaging>
      <name>Jetty :: Administrative Parent</name>
      <version>7</version>
    
      <build>
    
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.2K bytes
    - Viewed (0)
  2. internal/logger/console.go

    	ExitFunc(1)
    }
    
    func (f fatalMsg) quiet(msg string, args ...interface{}) {
    	f.pretty(msg, args...)
    }
    
    var (
    	logTag      = "ERROR"
    	logBanner   = color.BgRed(color.FgWhite(color.Bold(logTag))) + " "
    	emptyBanner = color.BgRed(strings.Repeat(" ", len(logTag))) + " "
    	bannerWidth = len(logTag) + 1
    )
    
    func (f fatalMsg) pretty(msg string, args ...interface{}) {
    	// Build the passed error message
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Feb 02 00:13:57 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/micromailer/spice-parent-9.pom

          </dependency>
          <dependency>
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>jetty</artifactId>
            <version>${jetty.version}</version>
          </dependency>
          <dependency>
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>jetty-client</artifactId>
            <version>${jetty.version}</version>
          </dependency>
          <dependency>
            <groupId>junit</groupId>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 3.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>jetty-parent</artifactId>
        <version>7</version>
          <relativePath>jetty-parent.xml</relativePath>
      </parent>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>project</artifactId>
      <packaging>pom</packaging>
      <name>Jetty Server Project</name>
      <version>6.1.12</version>
      <build>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.3K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jacksonKotlin = "com.fasterxml.jackson.module:jackson-module-kotlin"
        val javaParser = "com.github.javaparser:javaparser-core"
        val jetty = "org.eclipse.jetty:jetty-http"
        val jettySecurity = "org.eclipse.jetty:jetty-security"
        val jettyWebApp = "org.eclipse.jetty:jetty-webapp"
        val joptSimple = "net.sf.jopt-simple:jopt-simple"
        val jsoup = "org.jsoup:jsoup"
        val jtar = "org.kamranzafar:jtar"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  6. samples/compare/src/test/kotlin/okhttp3/compare/JettyHttpClientTest.kt

    import assertk.assertions.matches
    import mockwebserver3.MockResponse
    import mockwebserver3.MockWebServer
    import org.eclipse.jetty.client.HttpClient
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Test
    
    /**
     * Jetty HTTP client.
     *
     * https://www.eclipse.org/jetty/documentation/current/http-client.html
     *
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

        <module>plexus-hibernate</module>
        <module>plexus-i18n</module>
        <module>plexus-interactivity</module>
        <module>plexus-ircbot</module>
        <module>plexus-jdo</module>
        <module>plexus-jetty-httpd</module>
        <module>plexus-jetty</module>
        <module>plexus-mimetyper</module>
        <module>plexus-notification</module>
        <module>plexus-resource</module>
        <module>plexus-security</module>
        <module>plexus-summit</module>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  8. operator/cmd/mesh/profile-dump.go

    	if err != nil {
    		return "", err
    	}
    	return out2, nil
    }
    
    // Convert the generated YAML to pretty JSON.
    func yamlToPrettyJSON(yml string) (string, error) {
    	// YAML objects are not completely compatible with JSON
    	// objects. Let yaml.YAMLToJSON handle the edge cases and
    	// we'll re-encode the result to pretty JSON.
    	uglyJSON, err := yaml.YAMLToJSON([]byte(yml))
    	if err != nil {
    		return "", err
    	}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/TaskSegment.java

     *
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public final class TaskSegment {
    
        // Can be both "LifeCycleTask" (clean/install) and "GoalTask" (org.mortbay.jetty:maven-jetty-plugin:6.1.19:run)
    
        private final List<Task> tasks;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 2K bytes
    - Viewed (0)
  10. .github/renovate.json

      ],
      "packageRules": [
        {
          "matchPackageNames": ["org.objenesis:objenesis"],
          "allowedVersions": "<=2.6"
        },
        {
          "matchPackageNames": ["org.eclipse.jetty:jetty-client"],
          "allowedVersions": "<10.0",
          "description": "JDK 11 requirement"
        },
        {
          "matchPackageNames": ["org.junit-pioneer:junit-pioneer"],
          "allowedVersions": "<2.0.0",
    Json
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sat Feb 18 14:22:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top