Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,540 for unsuccessful (0.26 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            then:
            def ex3 = thrown(GradleException)
            ex3.is(ex)
            0 * _
        }
    
        void "fails later creation upon realizing through register provider when task instantiation is unsuccessful"() {
    
            given:
            def action = Mock(Action)
            1 * taskFactory.create(_ as TaskIdentity) >> { throw new RuntimeException("Failing constructor") }
            0 * action.execute(_)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/legacytokentracking/controller.go

    		}, metav1.CreateOptions{}); err != nil {
    			if apierrors.IsAlreadyExists(err) {
    				return nil
    			}
    			// don't consume the creationRatelimiter for an unsuccessful attempt
    			r.CancelAt(now)
    			return err
    		}
    	} else {
    		configMap := obj.(*corev1.ConfigMap)
    		if _, err = time.Parse(dateFormat, configMap.Data[ConfigMapDataKey]); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/plugins.go

    		return allPlugins, err
    	}
    
    	return allPlugins, nil
    }
    
    // AttemptToLoadRecycler tries decoding a pod from a filepath for use as a recycler for a volume.
    // If successful, this method will set the recycler on the config.
    // If unsuccessful, an error is returned. Function is exported for reuse downstream.
    func AttemptToLoadRecycler(path string, config *volume.VolumeConfig) error {
    	if path != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/probe/http/http.go

    type GetHTTPInterface interface {
    	Do(req *http.Request) (*http.Response, error)
    }
    
    // DoHTTPProbe checks if a GET request to the url succeeds.
    // If the HTTP response code is successful (i.e. 400 > code >= 200), it returns Success.
    // If the HTTP response code is unsuccessful or HTTP communication fails, it returns Failure.
    // This is exported because some other packages may want to do direct HTTP probes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 00:37:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

          calibration step. Each dataset file stores the representative dataset for
          the function matching the signature key.
    
          Raises `StatusNotOk` exception if when the run was unsuccessful.
          )pbdoc",
          py::arg("saved_model_path"), py::arg("dst_saved_model_path"),
          py::arg("quantization_options_serialized"), py::kw_only(),
          py::arg("signature_keys"), py::arg("signature_def_map_serialized"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/bootstrap/platform/azure.go

    	response, err := client.Do(req)
    	if err != nil {
    		log.Warnf("HTTP request failed: %v", err)
    		return ""
    	}
    	if response.StatusCode != http.StatusOK {
    		log.Warnf("HTTP request unsuccessful with status: %v", response.Status)
    	}
    	defer response.Body.Close()
    	body, err := io.ReadAll(response.Body)
    	if err != nil {
    		log.Warnf("Could not read response body: %v", err)
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // the directories already exist; returns false if unable to create
      // directories for any reason. Will also return false if the FilePath does
      // not represent a directory (that is, it doesn't end with a path separator).
      bool CreateDirectoriesRecursively() const;
    
      // Create the directory so that path exists. Returns true if successful or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

        serverIpv4.shutdown()
        serverIpv6.shutdown()
    
        val call = client.newCall(Request(url))
        assertFailsWith<IOException> {
          call.execute()
        }
    
        // In the process we made two unsuccessful connection attempts.
        assertThat(listener.recordedEventTypes().filter { it == "ConnectStart" }).hasSize(2)
        assertThat(listener.recordedEventTypes().filter { it == "ConnectFailed" }).hasSize(2)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    			expectedPodToGracePeriodOverride: map[string]int64{"normal-pod-nil-grace-period": 20, "critical-pod-nil-grace-period": 10},
    		},
    		{
    			desc:                             "override unsuccessful",
    			activePods:                       []*v1.Pod{normalPodNoGracePeriod, criticalPodNoGracePeriod},
    			shutdownGracePeriodRequested:     time.Duration(30 * time.Second),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    	// a missing in-cluster config will be fatal.
    	RemoteKubeConfigFileOptional bool
    
    	// AllowCacheTTL is the length of time that a successful authorization response will be cached
    	AllowCacheTTL time.Duration
    
    	// DenyCacheTTL is the length of time that an unsuccessful authorization response will be cached.
    	// You generally want more responsive, "deny, try again" flows.
    	DenyCacheTTL time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top