Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 925 for dev2 (0.11 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. 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)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    # Regression test for https://go.dev/issue/47215 and https://go.dev/issue/50183:
    # A missing $CC caused the C dependencies of the net
    # package to appear stale, and it could not be rebuilt due to a missing $CC.
    
    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/04-vuln.yml

      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks! To add a new vulnerability to the Go vulnerability database (https://vuln.go.dev), see https://go.dev/s/vulndb-report-new. To report an issue about a report, see https://go.dev/s/vulndb-report-feedback."
      - type: textarea
        id: govulncheck-version
        attributes:
          label: govulncheck version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. README.md

    #### Binary Distributions
    
    Official binary distributions are available at https://go.dev/dl/.
    
    After downloading a binary release, visit https://go.dev/doc/install
    for installation instructions.
    
    #### Install From Source
    
    If a binary distribution is not available for your combination of
    operating system and architecture, visit
    https://go.dev/doc/install/source
    for source installation instructions.
    
    ### Contributing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 20:14:56 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/dev_zos.go

    package unix
    
    // Major returns the major component of a z/OS device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 16) & 0x0000FFFF)
    }
    
    // Minor returns the minor component of a z/OS device number.
    func Minor(dev uint64) uint32 {
    	return uint32(dev & 0x0000FFFF)
    }
    
    // Mkdev returns a z/OS device number generated from the given major and minor
    // components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 830 bytes
    - Viewed (0)
Back to top