Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for uber (0.07 sec)

  1. src/net/http/server.go

    // unescaped) to tell the user why their request was bad. It should
    // be plain text without user info or other embedded errors.
    func badRequestError(e string) error { return statusError{StatusBadRequest, e} }
    
    // statusError is an error used to respond to a request with an HTTP status.
    // The text should be plain text without user info or other embedded errors.
    type statusError struct {
    	code int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.User == nil {
    				m.User = &UserSubject{}
    			}
    			if err := m.User.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 3:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 141.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.User == nil {
    				m.User = &UserSubject{}
    			}
    			if err := m.User.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 3:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 141.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        }
      }
      result.attributes.push_back(builder_.getNamedAttr(
          "device", builder_.getStringAttr(
                        DeviceNameUtils::ParsedNameToString(parsed_name))));
    
      // Map user function calls to LegacyCall ops and add the user function name
      // as an attribute.
      if (convert_to_legacy_call) {
        result.name = mlir::OperationName(get_full_op_name("LegacyCall"), context_);
        mlir::SymbolRefAttr val =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                Projects should only list the license(s) that applies to the project
                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
                <type>License</type>
                <multiplicity>*</multiplicity>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.User == nil {
    				m.User = &UserSubject{}
    			}
    			if err := m.User.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 3:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.User == nil {
    				m.User = &UserSubject{}
    			}
    			if err := m.User.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 3:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    			eventErr, detailedErr := volumeToAttach.GenerateError("AttachVolume.Attach failed", attachErr)
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Successful attach event is useful for user debugging
    		simpleMsg, _ := volumeToAttach.GenerateMsg("AttachVolume.Attach succeeded", "")
    		for _, pod := range volumeToAttach.ScheduledPods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		"User-Agent": {"foo"},
    		"Other":      {"bar"},
    	}
    
    	res, err := c.Get("https://dummy.tld/") // https to force a CONNECT
    	if err == nil {
    		res.Body.Close()
    		t.Errorf("unexpected success")
    	}
    
    	r := <-reqc
    	if got, want := r.Header.Get("User-Agent"), "foo"; got != want {
    		t.Errorf("CONNECT request User-Agent = %q; want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    }
    
    ArrayRef<Operation*> ShapeInference::GetCallers(func::FuncOp fn) {
      return symbol_users_.getUsers(fn);
    }
    
    void ShapeInference::EnqueueCallers(func::FuncOp fn) {
      for (auto user : GetCallers(fn)) {
        auto func = user->getParentOfType<func::FuncOp>();
        if (func) enqueue(func);
      }
    }
    
    bool ShapeInference::UpdateTypeAndInsertIncompatibleUseCasts(Type new_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top