Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for keyname (0.45 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                            _INVOKEVIRTUAL(generatedType, "getConventionMapping", RETURN_CONVENTION_MAPPING);
                            // GENERATE convention.ineligible(__property.getName()__)
                            _LDC(property.getName());
                            _INVOKEINTERFACE(CONVENTION_MAPPING_TYPE, "ineligible", RETURN_VOID_FROM_STRING);
                        }
                    }
                    _RETURN();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      for (auto fn : entry_functions) {
        subgraph_index_map_[fn.getName().str()] = subgraph_idx++;
        named_regions.emplace_back(fn.getName().str(), &fn.getBody());
      }
      for (auto fn : non_entry_functions) {
        subgraph_index_map_[fn.getName().str()] = subgraph_idx++;
        named_regions.emplace_back(fn.getName().str(), &fn.getBody());
      }
    
      // Build subgraph for each of the named regions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    							xdsfilters.MxFilterName,
    							xdsfilters.GrpcStats.GetName(),
    							xdsfilters.Alpn.GetName(),
    							xdsfilters.Fault.GetName(), xdsfilters.Cors.GetName(), wellknown.Router,
    						},
    					},
    					{
    						TotalMatch: true, // there must be only 1 `istio_authn` network filter
    						NetworkFilters: []string{
    							xdsfilters.TCPListenerMx.GetName(),
    							wellknown.TCPProxy,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getLogging()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getName()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          LLVM_DEBUG(llvm::dbgs() << "Keep inference for statically shaped op '"
                                  << op->getName() << "'.\n");
        } else {
          LLVM_DEBUG(llvm::dbgs() << "Skipping inference for statically shaped op '"
                                  << op->getName() << "'.\n");
          return false;
        }
      }
    
      if (isa<TF::RestoreOp, TF::RestoreV2Op>(op)) return InferShapeForRestore(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                          return a.getName() < b.getName();
                        });
    
      struct NamedAsset {
        llvm::StringRef name;
        AssetOp asset;
      };
      llvm::SmallVector<NamedAsset, 4> assets;
      for (auto asset : module.getOps<AssetOp>()) {
        assets.push_back({asset.getName(), asset});
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    private static final String OS_VERSION; private static final String PATH_SEP; private String family; private String name; private String version; private String arch; public void Os(); public void Os(String); public void setFamily(String); public void setName(String); public void setArch(String); public void setVersion(String); public boolean eval() throws Exception; public static boolean isFamily(String); public static boolean isName(String); public static boolean isArch(String); public static boolean...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // All concat operands must be defined by the op of same kind.
      bool args_same_op = llvm::all_of(op.getValues(), [&](Value arg) -> bool {
        Operation* arg_op = arg.getDefiningOp();
        return arg_op && arg_op->getName() == first_arg_op->getName();
      });
      if (!args_same_op) return failure();
    
      // Collect unary operations operands.
      auto unary_operands = llvm::map_range(op.getValues(), [](Value arg) -> Value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#toString()
         */
        public String toString()
        {
            return "Contributor {name=" + getName() + ", email=" + getEmail() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>Dependency</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    					v = appendErrorf(v, "literal tag value may not be empty")
    				}
    			case *telemetry.Tracing_CustomTag_Header:
    				if t.Header.GetName() == "" {
    					v = appendErrorf(v, "header tag name may not be empty")
    				}
    			case *telemetry.Tracing_CustomTag_Environment:
    				if t.Environment.GetName() == "" {
    					v = appendErrorf(v, "environment tag name may not be empty")
    				}
    			}
    		}
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top