Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Binary1 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // Move binary op before reshape: reshape -> binary => binary -> reshape.
      // This is valid only when the binary operand is constant and the shape is the
      // tail of the other operand and the intermediate result isn't used by other
      // ops.
      // $rhs is required to be the tail shape of $lhs, so after transformation the
      // shape of the binary op result is valid. For example, assume the shapes of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	pkg.test -test.v -myflag testdata -test.cpuprofile=prof.out
    
    (The -x flag is removed because it applies only to the go command's
    execution, not to the test itself.)
    
    The test flags that generate profiles (other than for coverage) also
    leave the test binary in pkg.test for use when analyzing the profiles.
    
    When 'go test' runs a test binary, it does so from within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p1.go", `//go:binary-only-package
    
    		package p1
    	`)
    	tg.wantStale("p1", "binary-only packages are no longer supported", "p1 is binary-only, and this message should always be printed")
    	tg.runFail("install", "p1")
    	tg.grepStderr("binary-only packages are no longer supported", "did not report attempt to compile binary-only package")
    
    	tg.tempFile("src/p1/p1.go", `
    		package p1
    		import "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			var namesize, descsize, noteType int32
    			err := binary.Read(r, f.ByteOrder, &namesize)
    			if err != nil {
    				if err == io.EOF {
    					break
    				}
    				return nil, fmt.Errorf("read namesize failed: %v", err)
    			}
    			err = binary.Read(r, f.ByteOrder, &descsize)
    			if err != nil {
    				return nil, fmt.Errorf("read descsize failed: %v", err)
    			}
    			err = binary.Read(r, f.ByteOrder, &noteType)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    		syntax.AndAnd: allBoolean,
    		syntax.OrOr:   allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    // (when invoked for an assignment operation where the binary expression is implicit).
    func (check *Checker) binary(x *operand, e syntax.Expr, lhs, rhs syntax.Expr, op syntax.Operator) {
    	var y operand
    
    	check.expr(nil, x, lhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	// if any change is made to the data stored, bumping this
    	// will allow to detect the exact version later.
    	xlVersionMinor = 3
    )
    
    func init() {
    	binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor)
    	binary.LittleEndian.PutUint16(xlVersionCurrent[2:4], xlVersionMinor)
    }
    
    // The []journal contains all the different versions of the object.
    //
    // This array can have 3 kinds of objects:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case format:
    	default:
    		return fmt.Errorf("%s: unknown format: %d", ri.JobType, binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case version:
    	default:
    		return fmt.Errorf("%s: unknown version: %d", ri.JobType, binary.LittleEndian.Uint16(data[2:4]))
    	}
    
    	ri.mu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    		token.AND_NOT: allInteger,
    
    		token.LAND: allBoolean,
    		token.LOR:  allBoolean,
    	}
    }
    
    // If e != nil, it must be the binary expression; it may be nil for non-constant expressions
    // (when invoked for an assignment operation where the binary expression is implicit).
    func (check *Checker) binary(x *operand, e ast.Expr, lhs, rhs ast.Expr, op token.Token, opPos token.Pos) {
    	var y operand
    
    	check.expr(nil, x, lhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

    }
    
    # This function guesses where the existing cached binary build is for the `-O`
    # flag
    function guess_built_binary_path {
      local apiserver_path
      apiserver_path=$(kube::util::find-binary "kube-apiserver")
      if [[ -z "${apiserver_path}" ]]; then
        return
      fi
      echo -n "$(dirname "${apiserver_path}")"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	// The directory in which to create profile files and the like. When run from
    	// "go test", the binary always runs in the source directory for the package;
    	// this flag lets "go test" tell the binary to write the files in the directory where
    	// the "go test" command is run.
    	outputDir = flag.String("test.outputdir", "", "write profiles to `dir`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top