Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for ulong (0.07 sec)

  1. cmd/bucket-replication.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/base64"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                       rw.getPadding()->getValues<int64_t>().end());
      } else {
        padding.resize(2 * rank, 0);
      }
    
      // Check that we don't do any reduction along the batch and channel
      // dimensions.
      auto verify_batch_channel_dims = [&rw, &window_strides, &padding](
                                           uint64_t batch_dim,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    }
    
    func validateWasmPluginSHA(plugin *extensions.WasmPlugin) error {
    	if plugin.Sha256 == "" {
    		return nil
    	}
    	if len(plugin.Sha256) != 64 {
    		return fmt.Errorf("sha256 field must be 64 characters long")
    	}
    	for _, r := range plugin.Sha256 {
    		if !('a' <= r && r <= 'f' || '0' <= r && r <= '9') {
    			return fmt.Errorf("sha256 field must match [a-f0-9]{64} pattern")
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (failed(failure_or_converged) || !failure_or_converged.value())
        return failure_or_converged;
      // TODO(b/156276510): Verify that it is always fine to refine a function's
      // return type, as long as we do not change the argument shapes.
      if (failed(context.InferShapeForFunctionReturnType(func))) return failure();
      return true;
    }
    
    absl::StatusOr<SmallVector<SmallVector<int64_t>>> ParseArgumentShapes(
    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/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

    /**
     * The keys for message.
     * @author FreeGen
     */
    public class FessLabels extends UserMessages {
    
        /** The serial version UID for object serialization. (Default) */
        private static final long serialVersionUID = 1L;
    
        /** The key of the message: Realm */
        public static final String LABELS_AUTH_REALM = "{labels.authRealm}";
    
        /** The key of the message: Status */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return
      }
      func.func @computation(%arg0: tensor<i32>) -> tensor<i32> {
        func.return %arg0: tensor<i32>
      }
    }
    
    // -----
    
    // Test that multiple uses of ClusterFuncOp output along with
    // TPUPartitionedOutputV2Op results in error.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.listMap.filter(m, has(m.v2) && m.v2 == 'z').map(m, m.v2).size() == 1",
    				// - without has checks:
    
    				// all() and exists() macros ignore errors from predicates so long as the condition holds for at least one element
    				"self.listMap.exists(m, m.v2 == 'z')",
    				"!self.listMap.all(m, m.v2 != 'z')",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	if prepares := numPrepares(t, db) - prepares0; prepares != 1 {
    		t.Errorf("executed %d Prepare statements; want 1", prepares)
    	}
    }
    
    func TestPoolExhaustOnCancel(t *testing.T) {
    	if testing.Short() {
    		t.Skip("long test")
    	}
    
    	max := 3
    	var saturate, saturateDone sync.WaitGroup
    	saturate.Add(max)
    	saturateDone.Add(max)
    
    	donePing := make(chan bool)
    	state := 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    # shellcheck disable=SC2153
    NODE_TAGS="${NODE_TAG}"
    
    ALLOCATE_NODE_CIDRS=true
    PREEXISTING_NETWORK=false
    PREEXISTING_NETWORK_MODE=""
    
    KUBE_PROMPT_FOR_UPDATE=${KUBE_PROMPT_FOR_UPDATE:-"n"}
    # How long (in seconds) to wait for cluster initialization.
    KUBE_CLUSTER_INITIALIZATION_TIMEOUT=${KUBE_CLUSTER_INITIALIZATION_TIMEOUT:-300}
    
    function join_csv() {
      local IFS=','; echo "$*";
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"crypto/md5"
    	"crypto/sha1"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/xml"
    	"fmt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top