Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for StatusCode (0.19 sec)

  1. cmd/perf-tests.go

    				t := time.Now()
    
    				r, _, _, err := c.GetObject(downloadsCtx, opts.bucketName, tmpObjName, gopts)
    				if err != nil {
    					errResp, ok := err.(minio.ErrorResponse)
    					if ok && errResp.StatusCode == http.StatusNotFound {
    						continue
    					}
    					if !contextCanceled(downloadsCtx) && !errors.Is(err, context.Canceled) {
    						errOnce.Do(func() {
    							retError = err.Error()
    						})
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one.go

    			} else {
    				feasibleNodes[length-1] = nodeInfo
    			}
    		} else {
    			result[i] = &nodeStatus{node: nodeInfo.Node().Name, status: status}
    		}
    	}
    
    	beginCheckNode := time.Now()
    	statusCode := framework.Success
    	defer func() {
    		// We record Filter extension point latency here instead of in framework.go because framework.RunFilterPlugins
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. internal/logger/target/http/http.go

    	if err != nil {
    		return fmt.Errorf("%s returned '%w', please check your endpoint configuration", h.Endpoint(), err)
    	}
    
    	// Drain any response.
    	xhttp.DrainBody(resp.Body)
    
    	switch resp.StatusCode {
    	case http.StatusOK, http.StatusCreated, http.StatusAccepted, http.StatusNoContent:
    		// accepted HTTP status codes.
    		return nil
    	case http.StatusForbidden:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

            return %0 : tensor<2x2x2xf32>
        }
      }
    )mlir";
    
    TEST_F(AttrsAndConstraintsTest, IsDotGeneralFullyConnectedReturnsError) {
      DotGeneralOp dot_general_op = nullptr;
      StatusIs(absl::StatusCode::kInvalidArgument,
               "Given dot_general op cannot be null when checking "
               "`IsDotGeneralBatchMatmul`");
    }
    
    TEST_F(AttrsAndConstraintsTest, IsDotGeneralFullyConnectedReturnsTrue) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      }
    
      return quantization_method;
    }
    
    Method GetQuantizationMethodOrDefault(absl::Nonnull<Operation*> op) {
      absl::StatusOr<Method> method = GetQuantizationMethod(op);
      if (method.status().code() == absl::StatusCode::kInternal) {
        // This indicates that the `Method` protobuf string is corrupt, but this
        // function ignores it and returns the default instance.
        op->emitError(absl::StrCat("Failed to get quantization method: ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks.go

    		}
    		stopRetry, err = func() (stopRetry bool, err error) {
    			r, err := client.Get(url)
    			if err != nil {
    				loopCount--
    				return false, err
    			}
    			defer r.Body.Close()
    
    			if r.StatusCode >= 500 && r.StatusCode <= 599 {
    				loopCount--
    				return false, errors.Errorf("server responded with non-successful status: %s", r.Status)
    			}
    			return true, json.NewDecoder(r.Body).Decode(target)
    
    		}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    	}
    
    	clnt := http.Client{Transport: getRemoteInstanceTransport()}
    	resp, err := clnt.Do(req)
    	if err != nil {
    		return err
    	}
    
    	xhttp.DrainBody(resp.Body)
    	if resp.StatusCode != http.StatusOK {
    		return errors.New(resp.Status)
    	}
    
    	return nil
    }
    
    // Expire expires object versions which have already matched supplied filter conditions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	client := &http.Client{
    		Transport: tr,
    		Timeout:   timeout + 5*time.Second,
    	}
    	resp, err := client.Get(source)
    	if err != nil {
    		return nil, fmt.Errorf("http fetch: %v", err)
    	}
    	if resp.StatusCode != http.StatusOK {
    		defer resp.Body.Close()
    		return nil, statusCodeError(resp)
    	}
    
    	return resp.Body, nil
    }
    
    func statusCodeError(resp *http.Response) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pkg/test/echo/proto/echo.pb.go

    	ServerName string `protobuf:"bytes,20,opt,name=serverName,proto3" json:"serverName,omitempty"`
    	// Expected response determines what string to look for in the response to validate TCP requests succeeded.
    	// If not set, defaults to "StatusCode=200"
    	ExpectedResponse *wrapperspb.StringValue `protobuf:"bytes,21,opt,name=expectedResponse,proto3" json:"expectedResponse,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// or some other part of the filter chain in delegation cases.
    	if delegationTarget.UnprotectedHandler() == nil && c.EnableIndex {
    		s.Handler.NonGoRestfulMux.NotFoundHandler(routes.IndexLister{
    			StatusCode:   http.StatusNotFound,
    			PathProvider: s.listedPathProvider,
    		})
    	}
    
    	return s, nil
    }
    
    func BuildHandlerChainWithStorageVersionPrecondition(apiHandler http.Handler, c *Config) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top