Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 514 for unsuccessful (0.39 sec)

  1. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

        }
      }
    
      // TODO GET preferred order - with tests to confirm this
      // 1. successful fresh cached GET response
      // 2. unsuccessful (404, 500) fresh cached GET response
      // 3. successful network response
      // 4. successful stale cached GET response
      // 5. unsuccessful response
      @Test
      fun usesCache() {
        val cache = Cache(cacheFs, "cache".toPath(), (100 * 1024).toLong())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  considered an error for this function.  Note that the run
     *  statistics (counts of tests, successes, failures) are cleared 
     *  each time this function is run, even if it is unsuccessful.
     *
     *  @return A CU_ErrorCode indicating the first error condition
     *          encountered while running the tests.
     *  @see CU_run_suite() to run the tests in a specific suite.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/cmd.go

    	// TODO: Discuss other input methods such as env, flag (ssuvasanth)
    	annotations, err := bootstrap.ReadPodAnnotations("")
    	if err != nil {
    		log.Debugf("Reading podInfoAnnotations file to get excludeInterfaces was unsuccessful. Continuing without exclusions. msg: %v", err)
    		return excludeAddrs
    	}
    	value, ok := annotations[annotation.SidecarTrafficExcludeInterfaces.Name]
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest_shared_test.go

    // readFile reads a file and returns the contents.
    func readFile(path string) (string, error) {
    	b, err := os.ReadFile(path)
    	return string(b), err
    }
    
    // writeFile writes a file and returns an error if operation is unsuccessful.
    func writeFile(path string, data []byte) error {
    	return os.WriteFile(path, data, 0o644)
    }
    
    // inFileAbsolutePath returns the absolute path for an input file like "gateways".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/core.go

    		_, serviceCIDR, err = netutils.ParseCIDRSloppy(controllerContext.ComponentConfig.NodeIPAMController.ServiceCIDR)
    		if err != nil {
    			logger.Info("Warning: unsuccessful parsing of service CIDR", "CIDR", controllerContext.ComponentConfig.NodeIPAMController.ServiceCIDR, "err", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. src/runtime/select.go

    	gp.activeStackChans = false
    
    	sellock(scases, lockorder)
    
    	gp.selectDone.Store(0)
    	sg = (*sudog)(gp.param)
    	gp.param = nil
    
    	// pass 3 - dequeue from unsuccessful chans
    	// otherwise they stack up on quiet channels
    	// record the successful case, if any.
    	// We singly-linked up the SudoGs in lock order.
    	casi = -1
    	cas = nil
    	caseSuccess = false
    	sglist = gp.waiting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top