Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for Replacer (0.24 sec)

  1. guava-tests/test/com/google/common/collect/MapsTest.java

        } catch (UnsupportedOperationException expected) {
        }
        try {
          unmod.replace(3, "three", "four");
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
        try {
          unmod.replace(3, "four");
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      // output_shape_kept_dims = [2, 1]
      auto output_shape_kept_dims =
          ReducedShapeHelper(scope, input_shape, op.input(1));
    
      // This step "flips" any 1s with values from the input_shape, and
      // replaces remaining entries with 1. This creates a shape that
      // shows how much each dimension in the incoming gradient should be
      // replicated.
      // tile_scaling = [1, 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                               bool reuse_existing_functions,
                               FunctionLibraryDefinition* library);
    
      // Write a copy of the input graph to 'graph_out', where the subgraphs are
      // replaced with calls to the new functions.
      Status BuildOutputGraph(Graph* graph_out, FunctionLibraryDefinition* library);
    
     private:
      // A subgraph of the input, all marked with a common 'group_attribute'
      // value.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

          }
        }
    
        @Override
        public boolean replace(K key, V oldValue, V newValue) {
          synchronized (mutex) {
            return delegate().replace(key, oldValue, newValue);
          }
        }
    
        @Override
        @CheckForNull
        public V replace(K key, V value) {
          synchronized (mutex) {
            return delegate().replace(key, value);
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Specifies pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
      //   0 - Never scheduled
      //   1 - Least preferred
      //   2 - No preference
      //   3 - Most preferred
      //
      // Deprecated: replaced by the affinity k8s settings which allows architecture nodeAffinity configuration of this behavior.
      ArchConfig arch = 1 [deprecated = true];
    
      // List of certSigners to allow "approve" action in the ClusterRole
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.charAt(3) == 'k'":                       4,
    				"self.val1.indexOf('o') == 1":                      4,
    				"self.val1.indexOf('o', 2) == 2":                   4,
    				"self.val1.replace(' ', 'x') == 'Rookxtakesx๐Ÿ‘‘'":    7,
    				"self.val1.replace(' ', 'x', 1) == 'Rookxtakes ๐Ÿ‘‘'": 7,
    				"self.val1.split(' ') == ['Rook', 'takes', '๐Ÿ‘‘']":   6,
    				"self.val1.split(' ', 2) == ['Rook', 'takes ๐Ÿ‘‘']":   6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
        }
    
        private static String replacePoints(String name) {
            return name.replace('.', '$');
        }
    
        /**
         * we use ConstructedClassWithPackage to limit the resolving the compiler does when combining package names and class names. The idea that if we use a package, then we do not want to replace the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
    
            private String escapeKotlinStringLiteral(String string) {
                return string
                    .replace("\\", "\\\\")
                    .replace("\"", "\\\"")
                    .replace("$", "\\$");
            }
    
            @Override
            public String mapLiteral(Map<String, ExpressionValue> map) {
                StringBuilder builder = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            def depCompile = dependencies[0]
            depCompile.selector == moduleId('group-two', 'artifact-two', '1.1')
            depCompile.scope == MavenScope.Runtime //scope is defined in the dependency declaration and is not replaced
        }
    
        def "if two dependencyManagement entries for the same dependency are combined, the closest wins a conflict"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    func OverrideRoots(ctx context.Context, replace []module.Version) {
    	requirements = overrideRoots(ctx, requirements, replace)
    }
    
    func overrideRoots(ctx context.Context, rs *Requirements, replace []module.Version) *Requirements {
    	drop := make(map[string]bool)
    	for _, m := range replace {
    		drop[m.Path] = true
    	}
    	var roots []module.Version
    	for _, m := range rs.rootModules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top