Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Rolling (0.2 sec)

  1. src/database/sql/sql.go

    	}
    	return ok
    }
    
    func (rs *Rows) nextLocked() (doClose, ok bool) {
    	if rs.closed {
    		return false, false
    	}
    
    	// Lock the driver connection before calling the driver interface
    	// rowsi to prevent a Tx from rolling back the connection at the same time.
    	rs.dc.Lock()
    	defer rs.dc.Unlock()
    
    	if rs.lastcols == nil {
    		rs.lastcols = make([]driver.Value, len(rs.rowsi.Columns()))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    		t.Errorf("opens = %d; want >= 9", opens)
    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    			tweakReplicas(3),
    			tweakUpdateStrategyType(""),
    		),
    		errs: field.ErrorList{
    			field.Required(field.NewPath("spec", "updateStrategy"), ""),
    		},
    	}, {
    		name: "invalid rolling update",
    		set: mkStatefulSet(&validPodTemplate,
    			tweakReplicas(3),
    			tweakUpdateStrategyType(apps.OnDeleteStatefulSetStrategyType),
    			tweakRollingUpdatePartition(1),
    		),
    		errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    #
    # Args:
    # $1 master env (kube-env of master; result of calling get-master-env)
    # $2 env key to use
    function get-env-val() {
      local match
      match=$( (echo "${1}" | grep -E "^${2}:") || echo '')
      if [[ -z "${match}" ]]; then
        echo ""
      fi
      echo "${match}" | cut -d : -f 2 | cut -d \' -f 2
    }
    
    # Load the master env by calling get-master-env, and extract important values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        this.future = task;
      }
    
      /**
       * Returns a future that finishes when this step does. Calling {@code get()} on the returned
       * future returns {@code null} if the step is successful or throws the same exception that would
       * be thrown by calling {@code finishToFuture().get()} if this were the last step. Calling {@code
       * cancel()} on the returned future has no effect on the {@code ClosingFuture} pipeline.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	gp.lockedm.set(gp.m)
    }
    
    // LockOSThread wires the calling goroutine to its current operating system thread.
    // The calling goroutine will always execute in that thread,
    // and no other goroutine will execute in it,
    // until the calling goroutine has made as many calls to
    // [UnlockOSThread] as to LockOSThread.
    // If the calling goroutine exits without unlocking the thread,
    // the thread will be terminated.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    type Fault int
    
    const (
    	None Fault = iota
    	MissingContentLength
    	TooBigObject
    	TooBigDecodedLength
    	BadSignature
    	BadMD5
    	MissingUploadID
    )
    
    // Wrapper for calling HeadObject API handler tests for both Erasure multiple disks and FS single drive setup.
    func TestAPIHeadObjectHandler(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. src/net/http/server.go

    		c.rwc.Close()
    		delete(srv.activeConn, c)
    	}
    	return err
    }
    
    // shutdownPollIntervalMax is the max polling interval when checking
    // quiescence during Server.Shutdown. Polling starts with a small
    // interval and backs off to the max.
    // Ideally we could find a solution that doesn't involve polling,
    // but which also doesn't have a high runtime cost (and doesn't
    // involve any contentious mutexes), but that is left as an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/reflect/value.go

    //
    // Not all methods apply to all kinds of values. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    // inappropriate to the kind of type causes a run time panic.
    //
    // The zero Value represents no value.
    // Its [Value.IsValid] method returns false, its Kind method returns [Invalid],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      if (val) {
        return !val.empty() && val.getElementType().isF32() && val.isSplat();
      }
      return false;
    }
    
    // Converts an Attribute with a single value of float or integral type to an
    // Attribute holding a single value of float type. If attr has no elements, the
    // result is 0.0f.
    TypedAttr ConvertSingleElementAttrToFloatAttr(Attribute attr) {
      const auto dense_fp_attr = mlir::dyn_cast_or_null<DenseFPElementsAttr>(attr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top