Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for paused (0.15 sec)

  1. cmd/object-handlers.go

    	}
    
    	// Read escaped copy source path to check for parameters.
    	cpSrcPath := r.Header.Get(xhttp.AmzCopySource)
    	var vid string
    	if u, err := url.Parse(cpSrcPath); err == nil {
    		vid = strings.TrimSpace(u.Query().Get(xhttp.VersionID))
    		// Note that url.Parse does the unescaping
    		cpSrcPath = u.Path
    	}
    
    	srcBucket, srcObject := path2BucketObject(cpSrcPath)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		// Maps from resourceName to the value we use to set node.allocatableResource[resourceName].
    		// A resource with invalid value (< 0) causes the function to return an error
    		// to emulate resource Allocation failure.
    		// Resources not contained in this map will have their node.allocatableResource
    		// quantity unchanged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    //
    // The provided context is used until the transaction is committed or rolled back.
    // If the context is canceled, the sql package will roll back
    // the transaction. [Tx.Commit] will return an error if the context provided to
    // BeginTx is canceled.
    //
    // The provided [TxOptions] is optional and may be nil if defaults should be used.
    // If a non-default isolation level is used that the driver doesn't support,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    	//
    	// TODO: It might be better to rewrite all these tests manipulate the client an explicitly sync to ensure consistent
    	// state, or to create a fake client that does not use a local cache.
    
    	// The client is passed initial sets, so we have to put them in the local setsIndexer cache.
    	if sets, err := client.AppsV1().StatefulSets("").List(context.TODO(), metav1.ListOptions{}); err != nil {
    		panic(err)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape IfOp outputs based on the shapes of the then and else
      // function result types.
      bool InferShapeForIf(IfOp op);
    
      // Infers the shape IfRegion outputs based on the shapes of the then and else
      // yields.
      bool InferShapeForIfRegion(IfRegionOp op);
    
      // Infers the shape CaseOp outputs based on the shapes of branch function
      // result types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	for _, b := range results.Buckets.Buckets {
    		if b.Name == bucketName {
    			createdBucket = b
    		}
    	}
    	c.Assert(createdBucket.Name != "", true)
    
    	// Parse the bucket modtime
    	creationTime, err := time.Parse(iso8601TimeFormat, createdBucket.CreationDate)
    	c.Assert(err, nil)
    
    	// Check if bucket modtime is consistent (not less than current time and not late more than 5 minutes)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    }
    
    // startScope starts a scope. This is used to decide whether we need
    // to parenthesize an expression using > or >>.
    func (ps *printState) startScope(b byte) {
    	ps.scopes++
    	ps.writeByte(b)
    }
    
    // endScope closes a scope.
    func (ps *printState) endScope(b byte) {
    	ps.scopes--
    	ps.writeByte(b)
    }
    
    // precedence is used for operator precedence. This is used to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				}
    				// NOTE: On Windows, time.Now() is not as precise, 2 consecutive calls may return the same timestamp,
    				// resulting in 0 time delta / latency. This will cause the pods to be backed off in a random
    				// order, which would cause this test to fail, since the expectation is for them to be backed off
    				// in a certain order.
    				// See: https://github.com/golang/go/issues/8687
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    ParseResult ControlNodeOp::parse(OpAsmParser& parser, OperationState& result) {
      // Parse the body region.
      llvm::SMLoc loc = parser.getCurrentLocation();
      Type control_type = ControlType::get(parser.getBuilder().getContext());
    
      // Parse optional argument list (control dependencies only).
      SmallVector<OpAsmParser::UnresolvedOperand, 4> op_infos;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    }
    
    func (c *ctxOnlyConn) Close() error {
    	return c.fc.Close()
    }
    
    // Prepare is still part of the Conn interface, so while it isn't used
    // must be defined for compatibility.
    func (c *ctxOnlyConn) Prepare(q string) (driver.Stmt, error) {
    	panic("not used")
    }
    
    func (c *ctxOnlyConn) PrepareContext(ctx context.Context, q string) (driver.Stmt, error) {
    	return c.fc.PrepareContext(ctx, q)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top