Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Shardz (0.14 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    darken{background-blend-mode:darken}.uk-background-blend-lighten{background-blend-mode:lighten}.uk-background-blend-color-dodge{background-blend-mode:color-dodge}.uk-background-blend-color-burn{background-blend-mode:color-burn}.uk-background-blend-hard-light{background-blend-mode:hard-light}.uk-background-blend-soft-light{background-blend-mode:soft-light}.uk-background-blend-difference{background-blend-mode:difference}.uk-background-blend-exclusion{background-blend-mode:exclusion}.uk-background-...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            op, op.getType(), op.getValue(), swaped_indices, slice_sizes_concat,
            dims_attr);
    
        return success();
      }
    };
    
    // Converts an XlaSharding op to a XLA HLO shard op with sharding attributes.
    class ConvertXlaShardingOp : public OpRewritePattern<TF::XlaShardingOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::XlaShardingOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
                  }
                ],
                "description": "required specifies hard node constraints that must be met."
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.20.md

    - UDP and SCTP protocols can left stale connections that need to be cleared to avoid services disruption, but they can cause problems that are hard to debug.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

    resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/x-ustar">
        <glob pattern="*.ustar"/>
      </mime-type>
    
      <mime-type type="application/x-vhd">
        <acronym>VHD</acronym>
        <_comment>Virtual PC Virtual Hard Disk</_comment>
        <tika:link>http://en.wikipedia.org/wiki/VHD_%28file_format%29</tika:link>
        <magic priority="50">
          <match value="conectix" type="string" offset="0"/>
        </magic>
      </mime-type>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	if base.Flag.Race && pkg == "sync/atomic" {
    		// The race detector needs to be able to intercept these calls.
    		// We can't intrinsify them.
    		return nil
    	}
    	// Skip intrinsifying math functions (which may contain hard-float
    	// instructions) when soft-float
    	if Arch.SoftFloat && pkg == "math" {
    		return nil
    	}
    
    	fn := sym.Name
    	if ssa.IntrinsicsDisable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    //
    // Ideally we should delay for at least 1 RTT + epsilon so the client has
    // a chance to read the GOAWAY and stop sending messages. Measuring RTT
    // is hard, so we approximate with 1 second. See golang.org/issue/18701.
    //
    // This is a var so it can be shorter in tests, where all requests uses the
    // loopback interface making the expected RTT very small.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top