Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for uber (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/proc.go

    // schedEnableUser enables or disables the scheduling of user
    // goroutines.
    //
    // This does not stop already running user goroutines, so the caller
    // should first stop the world when disabling user goroutines.
    func schedEnableUser(enable bool) {
    	lock(&sched.lock)
    	if sched.disable.user == !enable {
    		unlock(&sched.lock)
    		return
    	}
    	sched.disable.user = !enable
    	if enable {
    		n := sched.disable.n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      auto loc = op.getLoc();
    
      // First unpack user must be coeff-wise unary operation.
      Operation *first_user = *op->getUsers().begin();
      if (!first_user->hasTrait<OpTrait::TF::CwiseUnary>()) return failure();
    
      // All unpack users must be defined by the op of same kind.
      bool users_same_op = llvm::all_of(op->getUsers(), [&](Operation *user) {
        return user->getName() == first_user->getName();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    	7:  "bus error",
    	8:  "floating point exception",
    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    }
    
    const (
    	FILE_READ_DATA        = 0x00000001
    	FILE_READ_ATTRIBUTES  = 0x00000080
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    of values, in order of precedence (last wins): 1. The builtin values.yaml defaults 2. The profile the user selects 3. Users input (-f or --set) Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2). However, we can workaround this by placing all of (1) under a specific key (.Values.defaults). We can then merge the profile onto the defaults, then the user settings onto that. Finally, we can set all of that under .Values so the chart behaves without awareness....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

     */
    package org.codelibs.fess.es.user.cbean.ca.bs;
    
    import org.codelibs.fess.es.user.allcommon.EsAbstractConditionAggregation;
    import org.codelibs.fess.es.user.allcommon.EsAbstractConditionQuery;
    import org.codelibs.fess.es.user.cbean.ca.UserCA;
    import org.codelibs.fess.es.user.cbean.cq.UserCQ;
    import org.codelibs.fess.es.user.cbean.cq.bs.BsUserCQ;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 212.4K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    -pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
Back to top