Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for distinguish (0.18 sec)

  1. cmd/bucket-replication.go

    			ReplicationMTime:        dobj.DeleteMarkerMTime.Time,
    			ReplicationStatus:       minio.ReplicationStatusReplica,
    			ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    		},
    	})
    	if rmErr != nil {
    		rinfo.Err = rmErr
    		if dobj.VersionID == "" {
    			rinfo.ReplicationStatus = replication.Failed
    		} else {
    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. src/database/sql/sql.go

    // Next prepares the next result row for reading with the [Rows.Scan] method. It
    // returns true on success, or false if there is no next result row or an error
    // happened while preparing it. [Rows.Err] should be consulted to distinguish between
    // the two cases.
    //
    // Every call to [Rows.Scan], even the first one, must be preceded by a call to [Rows.Next].
    func (rs *Rows) Next() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <version>3.0.0+</version>
              <required>true</required>
              <description>
                A universally unique identifier for a project. It is normal to
                use a fully-qualified package name to distinguish it from other
                projects with a similar name (eg. {@code org.apache.maven}).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>artifactId</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //===----------------------------------------------------------------------===//
    
    // For `CollectiveReduceV2Op` we have 3 cases:
    // 1) `is_stateless` is true turns off automatic ordering and we purely rely on
    //    instance_key to distinguish collective groups. In this case, ordering
    //    tokens are irrelevant. Each collective group should have a unique
    //    instance_key at runtime.
    // 2) If at least one ordering token is present, then we purely rely on ordering
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	}
    	wg.Wait()
    }
    
    func writeBlock(ctxt *Link, out *OutBuf, ldr *loader.Loader, syms []loader.Sym, addr, size int64, pad []byte) {
    
    	st := ctxt.makeRelocSymState()
    
    	// This doesn't distinguish the memory size from the file
    	// size, and it lays out the file based on Symbol.Value, which
    	// is the virtual address. DWARF compression changes file sizes,
    	// so dwarfcompress will fix this up later if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      // Also fold if `input` has a known rank.
      auto input_type = getInput().getType().cast<ShapedType>();
      // Do not fold if rank is zero because the TFLite converter doesn't
      // distinguish between unranked input and scalar input due to b/138865275.
      // TODO(b/138865275): Remove `input_type.getRank() != 0` in the following
      // predicate and fold the op when rank is zero.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/net/http/server.go

    			u := &url.URL{Path: path, RawQuery: r.URL.RawQuery}
    			return RedirectHandler(u.String(), StatusMovedPermanently), patStr, nil, nil
    		}
    	}
    	if n == nil {
    		// We didn't find a match with the request method. To distinguish between
    		// Not Found and Method Not Allowed, see if there is another pattern that
    		// matches except for the method.
    		allowedMethods := mux.matchingMethods(host, path)
    		if len(allowedMethods) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      # First, ensure the template doesn't exist.
      # TODO(zmerlynn): To make this really robust, we need to parse the output and
      #                 add retries. Just relying on a non-zero exit code doesn't
      #                 distinguish an ephemeral failed call from a "not-exists".
      if gcloud compute instance-templates describe "${template_name}" --project "${PROJECT}" &>/dev/null; then
        echo "Instance template ${1} already exists; deleting." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // they must appear near the top of the file, preceded
    // only by blank lines and other comments. These rules mean that in Go
    // files a build constraint must appear before the package clause.
    //
    // To distinguish build constraints from package documentation,
    // a build constraint should be followed by a blank line.
    //
    // A build constraint comment is evaluated as an expression containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    			if num == 0 {
    				// According to the arm64 specification, for instructions MOVB, MOVBU and FMOVB,
    				// the extension amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    				// But in Go, we don't distinguish between Rn.UXTW and Rn.UXTW<<0, so we encode it as
    				// that does not present. This makes no difference to the function of the instruction.
    				// This is also true for extensions LSL, SXTW and SXTX.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top