Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for SAME (0.12 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. android/guava/src/com/google/common/util/concurrent/Futures.java

       * successful input futures. The list of results is in the same order as the input list, and if
       * any of the provided futures fails or is canceled, its corresponding position will contain
       * {@code null} (which is indistinguishable from the future having a successful value of {@code
       * null}).
       *
       * <p>The list of results is in the same order as the input list.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    					// Nothing was saved; we will fall back into the same condition
    					// in the next call to this method
    					return err
    				}
    			}
    			if err = ctrl.reclaimVolume(ctx, volume); err != nil {
    				// Release failed, we will fall back into the same condition
    				// in the next call to this method
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app5"},
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs20 = &config.Config{
    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-same-workloadselector-label-drs-merged",
    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app1"},
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs21 = &config.Config{
    		Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    			// pkg is a root of the package-import graph. (Generally this means that
    			// it matches a command-line argument.) We want future invocations of the
    			// 'go' command — such as 'go test' on the same package — to continue to
    			// use the same versions of its dependencies that we are using right now.
    			// So we need to bring this package's dependencies inside the pruned
    			// module graph.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    		if i < len(sub) {
    			istr, iflags = p.leadingString(sub[i])
    			if iflags == strflags {
    				same := 0
    				for same < len(str) && same < len(istr) && str[same] == istr[same] {
    					same++
    				}
    				if same > 0 {
    					// Matches at least one rune in current range.
    					// Keep going around.
    					str = str[:same]
    					continue
    				}
    			}
    		}
    
    		// Found end of a run with common leading literal string:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              << "embedding backwards pass op with no forwards pass ops.";
          return signalPassFailure();
        }
      }
    
      // Ensure that all ops are in the same region, and have the same replication
      // info.
      // TODO(bfontain): Allow for multiple regions/loops in one module.
      // TODO(patn): move this pass after cluster formation to remove the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    // The test file can be in the same package as the one being tested,
    // or in a corresponding package with the suffix "_test".
    //
    // If the test file is in the same package, it may refer to unexported
    // identifiers within the package, as in this example:
    //
    //	package abs
    //
    //	import "testing"
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // class ::string, which has the same interface as ::std::string, but
    // has a different implementation.
    //
    // The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that
    // ::string is available AND is a distinct type to ::std::string, or
    // define it to 0 to indicate otherwise.
    //
    // If the user's ::std::string and ::string are the same class due to
    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // class ::string, which has the same interface as ::std::string, but
    // has a different implementation.
    //
    // The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that
    // ::string is available AND is a distinct type to ::std::string, or
    // define it to 0 to indicate otherwise.
    //
    // If the user's ::std::string and ::string are the same class due to
    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top