Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Positions (0.25 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (!tensor_or) return false;
        tensors.push_back(*tensor_or);
    
        return true;
      };
    
      std::vector<BufferOffset<tflite::Operator>> operators;
    
      // Maps positions of operations in bb to positions in operators
      llvm::DenseMap<int, int> operation_index_to_operator_index;
      std::vector<Operation*> operators_in_mlir;
      auto& bb = region->front();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    			p.Dir = nogoErr.Dir
    		}
    		err = &NoGoError{Package: p}
    	}
    
    	// Take only the first error from a scanner.ErrorList. PackageError only
    	// has room for one position, so we report the first error with a position
    	// instead of all of the errors without a position.
    	var pos string
    	var isScanErr bool
    	if scanErr, ok := err.(scanner.ErrorList); ok && len(scanErr) > 0 {
    		isScanErr = true // For stack push/pop below.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	ValueOf(&f).Elem().Set(fv)
    
    	// Call g with small arguments so that there is
    	// something predictable (and different from the
    	// correct results) in those positions on the stack.
    	g := dummy
    	g(1, 2, 3, two{4, 5}, 6, 7, 8)
    
    	// Call constructed function f.
    	i, j, k, l, m, n, o := f(10, 20, 30, two{40, 50}, 60, 70, 80)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	a.built = objpkg
    	return nil
    }
    
    func (b *Builder) checkDirectives(a *Action) error {
    	var msg []byte
    	p := a.Package
    	var seen map[string]token.Position
    	for _, d := range p.Internal.Build.Directives {
    		if strings.HasPrefix(d.Text, "//go:debug") {
    			key, _, err := load.ParseGoDebug(d.Text)
    			if err != nil && err != load.ErrNotGoDebug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    // For a more concise way to create NamedArg values, see
    // the [Named] function.
    type NamedArg struct {
    	_NamedFieldsRequired struct{}
    
    	// Name is the name of the parameter placeholder.
    	//
    	// If empty, the ordinal position in the argument list will be
    	// used.
    	//
    	// Name must omit any symbol prefix.
    	Name string
    
    	// Value is the value of the parameter.
    	// It may be assigned the same value types as the query
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		for enum := stealOrder.start(cheaprand()); !enum.done(); enum.next() {
    			if sched.gcwaiting.Load() {
    				// GC work may be available.
    				return nil, false, now, pollUntil, true
    			}
    			p2 := allp[enum.position()]
    			if pp == p2 {
    				continue
    			}
    
    			// Steal timers from p2. This call to checkTimers is the only place
    			// where we might hold a lock on a different P's timers. We do this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            output.count("files: [${["lib1", "lib2", "lib3", "lib4-1.0"].collectMany { lib -> targetJarsFor(lib) }.sort().join(", ")}]") == 2
        }
    
        def "failure in transformation chain propagates (position in chain: #failingTransform)"() {
            given:
    
            Closure<String> possiblyFailingTransform = { index ->
                index == failingTransform ? "FailingDuplicator" : "Duplicator"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/cli/Commandline$Marker.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Marker { private int position; private int realPos; void Commandline$Marker(Commandline, int); public int getPosition(); } org/codehaus/plexus/util/cli/Commandline.class package org.codehaus.plexus.util.cli; public synchronized class Commandline implements Cloneable { protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func setConsoleCursorPosition(console Handle, position uint32) (err error) {
    	r1, _, e1 := syscall.Syscall(procSetConsoleCursorPosition.Addr(), 2, uintptr(console), uintptr(position), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func SetConsoleMode(console Handle, mode uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          }
        } else {
          return failure();
        }
        return success();
      }
    
     private:
      // Returns the dimension length of the channel dimension and also the slide
      // size by each position in the channel dimension accordingly. tfl.conv2d and
      // tfl.fully_connected has heading channel dimension, but tfl.depthwise_conv2d
      // has tailing channel dimension. This function is to provide a utility to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top