Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for Positions (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-core/src/test/resources/apiv4-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: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    DefaultConsumer implements StreamConsumer { public void DefaultConsumer(); public void consumeLine(String); } 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/StreamFeeder.class package org.codehaus.plexus.util.cli; public synchronized class StreamFeeder extends Thread { private java.io.InputStream...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/alldocs.go

    //
    // The error information, if any, is
    //
    //	type PackageError struct {
    //	    ImportStack   []string // shortest path from package named on command line to this one
    //	    Pos           string   // position of error (if present, file:line:col)
    //	    Err           string   // the error itself
    //	}
    //
    // The module information is a Module struct, defined in the discussion
    // of list -m below.
    //
    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. samples/addons/grafana.yaml

    text","showLineNumbers":false,"showMiniMap":false},"content":"<div>\n  <div style=\"position: absolute; bottom: 0\">\n    <a href=\"https://istio.io\" target=\"_blank\" style=\"font-size: 30px; text-decoration: none; color: inherit\"><img src=\"https://raw.githubusercontent.com/cncf/artwork/master/projects/istio/icon/color/istio-icon-color.svg\" style=\"height: 50px\"> Istio</a>\n  </div>\n  <div style=\"position: absolute; bottom: 0; right: 0; font-size: 15px\">\n    Istio is an <a href=\"https...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top