Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 154 for absorbed (0.17 sec)

  1. native-image-tests/src/main/kotlin/okhttp3/DotListener.kt

        testIdentifier: TestIdentifier,
        testExecutionResult: TestExecutionResult,
      ) {
        if (!testIdentifier.isContainer) {
          when (testExecutionResult.status!!) {
            TestExecutionResult.Status.ABORTED -> printStatus("-")
            TestExecutionResult.Status.FAILED -> printStatus("F")
            TestExecutionResult.Status.SUCCESSFUL -> printStatus(".")
          }
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. hack/verify-openapi-docs-urls.sh

    SPECROOT="${KUBE_ROOT}/api/openapi-spec"
    SPECV3PATH="${SPECROOT}/v3"
    
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    mkdir -p "${_tmpdir}"
    trap 'rm -rf ${_tmpdir}' EXIT SIGINT
    trap "echo Aborted; exit;" SIGINT SIGTERM
    
    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/security/retry.go

    	retry.WithMax(5),
    	retry.WithBackoff(wrapBackoffWithMetrics(retry.BackoffExponentialWithJitter(100*time.Millisecond, 0.1))),
    	retry.WithCodes(codes.Canceled, codes.DeadlineExceeded, codes.ResourceExhausted, codes.Aborted, codes.Internal, codes.Unavailable),
    }
    
    // CARetryInterceptor is a grpc UnaryInterceptor that adds retry options, as a convenience wrapper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    	return wait
    }
    
    // ConditionFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    type ConditionFunc func() (done bool, err error)
    
    // ConditionWithContextFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    //
    // The caller passes along a context that can be used by the condition function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

                      .Attr("output_file_path", "/tmp/statistics.pbtxt")
                      .Finalize(node_def()));
      ASSERT_THAT(InitOp(),
                  StatusIs(tsl::error::ABORTED,
                           HasSubstr("The number of inputs must be  three times "
                                     "the size of the `ids` list.")));
    }
    
    TEST_F(CalibrationStatisticsSaverTest, WrongInputTypes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/scope_container_test.go

    					map[string][]TopologyHint{
    						"resource": nil,
    					},
    				},
    			},
    			expected: []map[string][]TopologyHint{
    				{
    					"resource": nil,
    				},
    			},
    		},
    		{
    			name: "Assorted HintProviders",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource-1/A": {
    							{NUMANodeAffinity: NewTestBitMask(0), Preferred: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  7. hack/update-kustomize.sh

    read -p "Update kubectl kustomize to these versions? [y/N] " -n 1 -r
    echo
    
    if [[ $REPLY =~ ^[Yy]$ ]]; then
      echo -e "\n${color_blue:?}Updating kubectl kustomize${color_norm:?}"
    else
      echo -e "\n${color_red:?}Update aborted${color_norm:?}"
      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED;
    import static org.junit.platform.engine.TestExecutionResult.Status.ABORTED;
    import static org.junit.platform.engine.TestExecutionResult.Status.FAILED;
    
    /**
     * A {@link TestExecutionListener} that maps JUnit5 events to Gradle test events.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (1)
  9. pkg/kubelet/cm/topologymanager/scope_pod_test.go

    					map[string][]TopologyHint{
    						"resource": nil,
    					},
    				},
    			},
    			expected: []map[string][]TopologyHint{
    				{
    					"resource": nil,
    				},
    			},
    		},
    		{
    			name: "Assorted HintProviders",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource-1/A": {
    							{NUMANodeAffinity: NewTestBitMask(0), Preferred: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  10. src/net/http/fcgi/child.go

    var emptyBody = io.NopCloser(strings.NewReader(""))
    
    // ErrRequestAborted is returned by Read when a handler attempts to read the
    // body of a request that has been aborted by the web server.
    var ErrRequestAborted = errors.New("fcgi: request aborted by web server")
    
    // ErrConnClosed is returned by Read when a handler attempts to read the body of
    // a request after the connection to the web server has been closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top