Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Shardz (0.17 sec)

  1. src/cmd/go/internal/work/exec.go

    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    			return append(args, "-mhard-float")
    		} else if cfg.GOMIPS64 == "softfloat" {
    			return append(args, "-msoft-float")
    		}
    	case "mips", "mipsle":
    		args := []string{"-mabi=32", "-march=mips32"}
    		if cfg.GOMIPS == "hardfloat" {
    			return append(args, "-mhard-float", "-mfp32", "-mno-odd-spreg")
    		} else if cfg.GOMIPS == "softfloat" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: resourceQuota},
    	}
    
    	resources := make([]api.ResourceName, 0, len(resourceQuota.Status.Hard))
    	for resource := range resourceQuota.Status.Hard {
    		resources = append(resources, resource)
    	}
    	sort.Sort(SortableResourceNames(resources))
    
    	requestColumn := bytes.NewBuffer([]byte{})
    	limitColumn := bytes.NewBuffer([]byte{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. src/net/http/server.go

    func (ecr *expectContinueReader) Close() error {
    	ecr.closed.Store(true)
    	return ecr.readCloser.Close()
    }
    
    // TimeFormat is the time format to use when generating times in HTTP
    // headers. It is like [time.RFC1123] but hard-codes GMT as the time
    // zone. The time being formatted must be in UTC for Format to
    // generate the correct format.
    //
    // For parsing this time format, see [ParseTime].
    const TimeFormat = "Mon, 02 Jan 2006 15:04:05 GMT"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // sense that one is an incremental change over the other.
    // In reality NonMaxSuppressionV5 implements Soft Non Max Suppression and
    // NonMaxSuppressionV4 performs hard NMS.
    
    def TFL_NonMaxSuppressionV4Op : TFL_Op<"non_max_suppression_v4", [
      Pure,
      // Operand 0 (boxes) should have rank 2 with the dim[1] == 4 (box corners)
      TFL_OperandHasRank<0, 2>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This prints the current module (by default, to stderr). The module is
        otherwise piped through without changes.
    
        This complements MLIRs dumping functionality, which can sometimes be hard
        to configure. This pass is useful if you know the exact position in the
        pipeline where you want to dump, and are able to easily modify the pipeline
        source code.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    		shutdownRes <- ts.Config.Shutdown(context.Background())
    	}()
    	readRes := make(chan error, 1)
    	go func() {
    		_, err := c.Read([]byte{0})
    		readRes <- err
    	}()
    
    	// TODO(#59037): This timeout is hard-coded in closeIdleConnections.
    	// It is undocumented, and some users may find it surprising.
    	// Either document it, or switch to a less surprising behavior.
    	const expectTimeout = 5 * time.Second
    
    	t0 := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top