Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 314 for dev2 (0.04 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            def selector2 = selector(11, "org", "dep2", "2.0")
            root.outgoingEdges >> [
                dep(selector1, 1, new RuntimeException()),
                dep(selector2, 1, 3)
            ]
            def dep2 = node(3, "org", "dep2", "2.0")
            def selector3 = selector(12, "org", "dep1", "5.0")
            dep2.outgoingEdges >> [dep(selector3, 3, new RuntimeException())]
    
            builder.start(root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K 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. pkg/kubelet/kubelet_pods_linux_test.go

    				{
    					PathInContainer: "/dev/sda",
    					PathOnHost:      "/dev/sda",
    					Permissions:     "mrw",
    				},
    				{
    					PathInContainer: "/dev/xvda",
    					PathOnHost:      "/dev/disk/by-path/diskPath",
    					Permissions:     "r",
    				},
    				{
    					PathInContainer: "/dev/xvdb",
    					PathOnHost:      "/dev/disk/by-id/diskUuid",
    					Permissions:     "mrw",
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/get_compiler_ir.cc

          inputs[i + offset] = &inputs_storage.back();
        } else {
          inputs[i + offset] = t;
        }
      }
    
      if (dev != nullptr) {
        TF_RETURN_IF_ERROR(GetVariableInfosFromInputs(dev->resource_manager(), dev,
                                                      inputs, resource_arg_indices,
                                                      &variable_infos));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/html/template/js_test.go

    		s     string
    	}{
    		// Statement terminators precede regexps.
    		{jsCtxRegexp, ";"},
    		// This is not airtight.
    		//     ({ valueOf: function () { return 1 } } / 2)
    		// is valid JavaScript but in practice, devs do not do this.
    		// A block followed by a statement starting with a RegExp is
    		// much more common:
    		//     while (x) {...} /foo/.test(x) || panic()
    		{jsCtxRegexp, "}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/bugreport/bugreport.go

    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/shared_test.go

    // runtime, another package (dep2) that links against the first, and an
    // executable that links against dep2.
    func TestTwoGopathShlibs(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "install", "-buildmode=shared", "-linkshared", "./depBase")
    	goCmd(t, "install", "-buildmode=shared", "-linkshared", "./dep2")
    	goCmd(t, "install", "-linkshared", "./exe2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      volumesAttached:
      - devicePath: /dev/disk/by-id/b9772-pvc-c787c67d-14d7-11e7-9baf-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-c787c67d-14d7-11e7-9baf-42010a800049
      - devicePath: /dev/disk/by-id/b9772-pvc-8895a852-fd42-11e6-94d4-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-8895a852-fd42-11e6-94d4-42010a800049
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. mvnw

    if [ -n "$wrapperSha256Sum" ]; then
      wrapperSha256Result=false
      if command -v sha256sum > /dev/null; then
        if echo "$wrapperSha256Sum  $wrapperJarPath" | sha256sum -c > /dev/null 2>&1; then
          wrapperSha256Result=true
        fi
      elif command -v shasum > /dev/null; then
        if echo "$wrapperSha256Sum  $wrapperJarPath" | shasum -a 256 -c > /dev/null 2>&1; then
          wrapperSha256Result=true
        fi
      else
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. Makefile

    	@echo "Running tests for IAM (external IDP, etcd backends)"
    	@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue,dev -v -run TestIAM* ./cmd
    	@echo "Running tests for IAM (external IDP, etcd backends) with -race"
    	@MINIO_API_REQUESTS_MAX=10000 GORACE=history_size=7 CGO_ENABLED=1 go test -race -tags kqueue,dev -v -run TestIAM* ./cmd
    
    test-iam-ldap-upgrade-import: install-race ## verify IAM (external LDAP IDP)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top