Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,244 for sameId (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            z = nn_ops.conv2d(x, w, padding='SAME')
            return z, w
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      shape=input_shape, dtype=dtypes.float32, name='input_tensor'
                  )
              ]
          )
          def main(self, x):
            x1 = nn_ops.conv2d(x, self.w, padding='SAME')
            x2, _ = while_loop_ops.while_loop(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                        }
                    }
                }
                tasks.register("notByRule")
    
                task foo {
                    dependsOn tasks.named("bar")
                    dependsOn tasks.named("baz")
                    dependsOn "notByRule"
                }
    
            """
            expect:
            succeeds("foo")
            result.assertTasksExecuted(":notByRule", ":bar", ":baz", ":foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/path-params-numeric-validations.md

    # Path Parameters and Numeric Validations
    
    In the same way that you can declare more validations and metadata for query parameters with `Query`, you can declare the same type of validations and metadata for path parameters with `Path`.
    
    ## Import Path
    
    First, import `Path` from `fastapi`, and import `Annotated`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="1  3"
        {!> ../../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    
    # 'go install pkg@version' should report an error if the arguments are in
    # different modules.
    ! go install example.com/cmd/a@v1.0.0 rsc.io/fortune@v1.0.0
    stderr '^package rsc.io/fortune provided by module rsc.io/fortune@v1.0.0\n\tAll packages must be provided by the same module \(example.com/cmd@v1.0.0\).$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/TestThread.java

        stop();
        join();
    
        if (uncaughtThrowable != null) {
          throw new AssertionError("Uncaught throwable in " + getName(), uncaughtThrowable);
        }
      }
    
      /**
       * Causes this thread to call the named void method, and asserts that the call returns normally.
       */
      public void callAndAssertReturns(String methodName, Object... arguments) throws Exception {
        checkNotNull(methodName);
        checkNotNull(arguments);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

         * computed in the same way, it does not need to be tracked.
         *
         * This is a {@code static} because of how JUnit handles instantiating the test class, to avoid extracting the same
         * jar multiple times per running test class.  We use this set to avoid doing an IO operation to check if the jar has already been extracted,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes.java;
    
    import org.gradle.api.Named;
    import org.gradle.api.attributes.Attribute;
    
    /**
     * Represents the target JVM environment. Typically, a standard JVM or Android.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// ReadCache reads and returns the content of the named cache file.
    	// Any returned error will be treated as equivalent to the file not existing.
    	// There can be arbitrarily many cache files, such as:
    	//	serverName/lookup/pkg@version
    	//	serverName/tile/8/1/x123/456
    	ReadCache(file string) ([]byte, error)
    
    	// WriteCache writes the named cache file.
    	WriteCache(file string, data []byte)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/mono.go

    				do(typ.Field(i).Type())
    			}
    		}
    	}
    	do(targ)
    }
    
    // localNamedVertex returns the index of the vertex representing
    // named, or -1 if named doesn't need representation.
    func (w *monoGraph) localNamedVertex(pkg *Package, named *Named) int {
    	obj := named.Obj()
    	if obj.Pkg() != pkg {
    		return -1 // imported type
    	}
    
    	root := pkg.Scope()
    	if obj.Parent() == root {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    func getUseWaypoint(meta metav1.ObjectMeta, defaultNamespace string) (named *krt.Named, isNone bool) {
    	if labelValue, ok := meta.Labels[constants.AmbientUseWaypointLabel]; ok {
    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top