Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 315 for unlabel (0.1 sec)

  1. tests/test_tutorial/test_handling_errors/test_tutorial006.py

            {
                "detail": [
                    {
                        "type": "int_parsing",
                        "loc": ["path", "item_id"],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "foo",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

        }
    
        private JvmInstallationMetadata validate(JvmInstallationMetadata metadata) {
            if(metadata.isValidInstallation()) {
                return metadata;
            }
            throw new GradleException("Unable to determine version for JDK located at " + metadata.getJavaHome() + ". Reason: " + metadata.getErrorMessage(), metadata.getErrorCause());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/manager.go

    				info, exists := m.cache.get(claim.Name, claim.Namespace)
    				if !exists {
    					return fmt.Errorf("unable to get claim info for claim %s in namespace %s", claim.Name, claim.Namespace)
    				}
    				if err := info.setCDIDevices(pluginName, result.GetCDIDevices()); err != nil {
    					return fmt.Errorf("unable to add CDI devices for plugin %s of claim %s in namespace %s", pluginName, claim.Name, claim.Namespace)
    				}
    				return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignatoriesConfigurationSpec.groovy

            given:
            addSigningProperties(set: "invalid-key-ring")
    
            when:
            signing.signatory
    
            then:
            def e = thrown(InvalidUserDataException)
            e.message.contains "Unable to read secret key from"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallation.groovy

            def process = [mvn.absolutePath, "--version"].execute(env, home)
            def exitValue = process.waitFor()
            if (exitValue != 0) {
                throw new BadExitCodeException("Unable to probe Maven version from ${mvn.absolutePath}, returned ${exitValue}.\n${process.err.text}")
            }
            (process.text.readLines().get(0) =~ /Apache Maven ([^\s]+) \(/)[0][1]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/authentication_dynamic_request_header.go

    		"client-ca",
    		authenticationConfigMapNamespace,
    		authenticationConfigMapName,
    		"requestheader-client-ca-file",
    		client)
    	if err != nil {
    		return nil, fmt.Errorf("unable to create DynamicCAFromConfigMap controller: %v", err)
    	}
    
    	requestHeaderAuthRequestController := headerrequest.NewRequestHeaderAuthRequestController(
    		authenticationConfigMapName,
    		authenticationConfigMapNamespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. pkg/kubelet/nodeshutdown/systemd/inhibit_linux.go

    func (bus *DBusCon) ReleaseInhibitLock(lock InhibitLock) error {
    	err := syscall.Close(int(lock))
    
    	if err != nil {
    		return fmt.Errorf("unable to close systemd inhibitor lock: %w", err)
    	}
    
    	return nil
    }
    
    // ReloadLogindConf uses dbus to send a SIGHUP to the systemd-logind service causing logind to reload it's configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

                return jsonReader.readObject();
              }
            } else {
              System.out.println("Error: unable to contact " + ratings_service + " got status of " + statusCode);
              return null;
            }
          } catch (ProcessingException e) {
            System.err.println("Error: unable to contact " + ratings_service + " got exception " + e);
            return null;
          }
        }
    
        @GET
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	}
    
    	v, details, err := a.result.Program.ContextEval(a.context, a.activation)
    	if details == nil {
    		return types.NewErr("unable to get evaluation details of variable %q", a.name)
    	}
    	costPtr := details.ActualCost()
    	if costPtr == nil {
    		return types.NewErr("unable to calculate cost of variable %q", a.name)
    	}
    	cost := int64(*costPtr)
    	if *costPtr > math.MaxInt64 {
    		cost = math.MaxInt64
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    				// a control statement, such as a labeled for.
    				if label, isLabel := stmt.(*ast.LabeledStmt); isLabel && !f.isControl(label.Stmt) {
    					newLabel := *label
    					newLabel.Stmt = &ast.EmptyStmt{
    						Semicolon: label.Stmt.Pos(),
    						Implicit:  true,
    					}
    					end = label.Pos() // Previous block ends before the label.
    					list[last] = &newLabel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top