Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,069 for dev2 (0.22 sec)

  1. hack/verify-publishing-bot.py

                if "dependencies" in branch:
                    for dep2 in branch["dependencies"]:
                        processed_deps.append(dep2["repository"])
                        if dep2["branch"] != "master":
                            raise Exception("Looking for master branch and found : %s for destination", dep2,
                                            rule["destination"])
                        if dep2["repository"] == dep:
                            found = True
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/linklist3.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go]
      - Bar
    
    [Go]: https://go.dev/
    -- text --
    Cool things:
    
      - Foo
      - Go
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
      - [Go](https://go.dev/)
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li>Foo
    <li><a href="https://go.dev/">Go</a>
    <li>Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 349 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/link2.txt

    link.
    
    -- markdown --
    The Go home page is [https://go.dev/](https://go.dev/). It used to be [https://golang.org](https://golang.org). https:// is not a link. Nor is https:// https://☺ is not a link. https://:80 is not a link.
    
    -- html --
    <p>The Go home page is <a href="https://go.dev/">https://go.dev/</a>.
    It used to be <a href="https://golang.org">https://golang.org</a>.
    https:// is not a link.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
  4. src/packaging/common/scripts/postrm

    fi
    
    if [ "$REMOVE_SERVICE" = "true" ]; then
        if command -v systemctl >/dev/null; then
            systemctl --no-reload disable fess.service > /dev/null 2>&1 || true
        fi
    
        if command -v chkconfig >/dev/null; then
            chkconfig --del fess 2> /dev/null || true
        fi
    
        if command -v update-rc.d >/dev/null; then
            update-rc.d fess remove >/dev/null || true
        fi
    fi
    
    if [ "$REMOVE_DIRS" = "true" ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/handling-errors.md

    Contudo, o cliente ou usuário não terão acesso a ele. Ao contrário, o cliente receberá um "Internal Server Error" com o HTTP status code `500`.
    
    E assim deve ser porque seria um bug no seu código ter o `ValidationError` do Pydantic na sua *response*, ou em qualquer outro lugar do seu código (que não na requisição do cliente).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializerTest.groovy

                directory("/home/lptr/dev/empty", []),
                directory("/home/lptr/dev/sub", [
                    regularFile("/home/lptr/dev/sub/three.txt"),
                    regularFile("/home/lptr/dev/sub/four.txt"),
                ]),
                regularFile("/home/lptr/dev/link", VIA_SYMLINK),
            ])
    
            when:
            def out = serialize(snapshots, serializer)
    
            then:
            assertEqualSnapshots(out, snapshots)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/linklist2.txt

    Did you know?
    
      - [testing.T](https://pkg.go.dev/testing#T) is one doc link.
    
      - So is [testing.M](https://pkg.go.dev/testing#M).
    
      - So is [testing.B](https://pkg.go.dev/testing#B). This is the same list paragraph.
    
        There is [testing.PB](https://pkg.go.dev/testing#PB) in this list item, too!
    -- html --
    <p>Did you know?
    <ul>
    <li><p><a href="https://pkg.go.dev/testing#T">testing.T</a> is one doc link.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. plugin/pkg/admission/podnodeselector/admission_test.go

    			podNodeSelector:       map[string]string{"env": "dev", "color": "blue"},
    			mergedNodeSelector:    labels.Set{"infra": "false", "env": "dev", "color": "blue"},
    			admit:                 true,
    			testName:              "Merged pod node selectors satisfy the whitelist",
    		},
    		{
    			defaultNodeSelector:   "env=dev",
    			namespaceNodeSelector: "infra=false, env = dev",
    			whitelist:             "env=dev, infra=true, color=blue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

    name: Pkg.go.dev package removal request
    description: Request a package be removed from the documentation site (pkg.go.dev)
    title: "x/pkgsite: package removal request for [type path here]"
    labels: ["pkgsite/package-removal"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: package-path
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/RepositorySystemTest.java

            assertEquals(4, depArtifact.getProperties().size());
    
            assertEquals("compile", dep2.getScope());
            assertFalse(dep2.isOptional());
            assertEquals(0, dep2.getExclusions().size());
            depArtifact = dep2.getArtifact();
            assertEquals("ut.simple", depArtifact.getGroupId());
            assertEquals("dependency", depArtifact.getArtifactId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top