Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 315 for unlabel (0.3 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/MultiLanguageSamplesDocinfoProcessor.java

                return IOUtils.toString(inputStream, StandardCharsets.UTF_8);
            } catch (IOException e) {
                throw new IllegalStateException("Unable to read source resource for MultiLanguageSamples: " + e.getMessage());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/transport_test.go

    	certificate, err := tls.X509KeyPair([]byte(certificatePEM), []byte(keyPEM))
    	if err != nil {
    		panic(fmt.Sprintf("Unable to initialize certificate: %v", err))
    	}
    	certs, err := x509.ParseCertificates(certificate.Certificate[0])
    	if err != nil {
    		panic(fmt.Sprintf("Unable to initialize certificate leaf: %v", err))
    	}
    	certificate.Leaf = certs[0]
    	return &certificateData{
    		keyPEM:         []byte(keyPEM),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 18 08:52:58 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/content/script.js

              });
              list.slideDown("slow");
            }
          },
          timeout: 10000,
          error: function() {
            finishAnimation();
            $("<p>Unable to retrieve the issue information. You may not be connected to the Internet, or there may have been an error.</p>").insertAfter(insertAfter).css({fontWeight: "bold", color: "red"});
          }
        });
      }
    
      injectIssues(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptErrorIntegrationTest.groovy

            fails()
    
            then:
            failure.assertHasDescription("Could not compile initialization script '$initScript'.")
                    .assertThatCause(containsString("initialization script '$initScript': 3: unable to resolve class org.gradle.unknown.Unknown"))
                    .assertHasFileName("Initialization script '$initScript'")
                    .assertHasLineNumber(3)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 15:16:36 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/ClasspathVersionSource.java

        }
    
        @Override
        public Properties create() {
            URL resource = classLoader.getResource(resourceName);
            if (resource == null) {
                throw new RuntimeException(
                        "Unable to find the released versions information.\n"
                                + "The resource '" + resourceName + "' was not found.\n"
                                + "Most likely, you haven't run the 'prepareVersionsInfo' task.\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/version.go

    	if err != nil {
    		return "", errors.Errorf("unable to get URL %q: %s", url, err.Error())
    	}
    	defer resp.Body.Close()
    	body, err := io.ReadAll(resp.Body)
    	if err != nil {
    		return "", errors.Errorf("unable to read content of URL %q: %s", url, err.Error())
    	}
    	bodyString := strings.TrimSpace(string(body))
    
    	if resp.StatusCode != http.StatusOK {
    		msg := fmt.Sprintf("unable to fetch file. URL: %q, status: %v", url, resp.Status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. cmd/update_test.go

    		tmpfile, err := os.CreateTemp("", "helm-testfile-")
    		if err != nil {
    			t.Fatalf("Unable to create temporary file. %s", err)
    		}
    		if _, err = tmpfile.WriteString(content); err != nil {
    			t.Fatalf("Unable to create temporary file. %s", err)
    		}
    		if err = tmpfile.Close(); err != nil {
    			t.Fatalf("Unable to create temporary file. %s", err)
    		}
    		return tmpfile.Name()
    	}
    
    	filename := createTempFile(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. istioctl/pkg/wait/wait.go

    			t := time.NewTicker(pollInterval)
    			printVerbosef(cmd, "getting first version from chan")
    			firstVersion, err := w.BlockingRead()
    			if err != nil {
    				return fmt.Errorf("unable to retrieve Kubernetes resource %s: %v", "", err)
    			}
    			generations := []string{firstVersion}
    			targetResource := config.Key(
    				targetSchema.Group(), targetSchema.Version(), targetSchema.Kind(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/preflight/checks.go

    		defer conn.Close()
    		return true
    	}
    	return false
    }
    
    func parseServerURI(serverURI string) (*url.URL, error) {
    	connURL, err := url.Parse(serverURI)
    	if err != nil {
    		return &url.URL{}, fmt.Errorf("unable to parse etcd url: %v", err)
    	}
    	return connURL, nil
    }
    
    // CheckEtcdServers will attempt to reach all etcd servers once. If any
    // can be reached, return true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 20 10:50:48 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_handling_errors/test_tutorial005.py

            {
                "detail": [
                    {
                        "type": "int_parsing",
                        "loc": ["body", "size"],
                        "msg": "Input should be a valid integer, unable to parse string as an integer",
                        "input": "XL",
                    }
                ],
                "body": {"title": "towel", "size": "XL"},
            }
        ) | IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top